diff options
Diffstat (limited to 'src/lib/netlist/plib/poptions.cpp')
-rw-r--r-- | src/lib/netlist/plib/poptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/plib/poptions.cpp b/src/lib/netlist/plib/poptions.cpp index 6f6ace0599c..6746e453fae 100644 --- a/src/lib/netlist/plib/poptions.cpp +++ b/src/lib/netlist/plib/poptions.cpp @@ -75,7 +75,7 @@ namespace plib { { if (m_other_args != nullptr) { - pthrow<pexception>("other args can only be specified once!"); + throw pexception("other args can only be specified once!"); } else { @@ -83,7 +83,7 @@ namespace plib { } } else - pthrow<pexception>("found option with neither short or long tag!" ); + throw pexception("found option with neither short or long tag!" ); } } } |