[muparser] Convert more exception handling into explicit errors

This commit is contained in:
ridiculousfish
2017-12-16 14:10:45 -08:00
parent d3822e4cb3
commit 6f14d55612
3 changed files with 9 additions and 17 deletions

View File

@@ -288,7 +288,7 @@ class ParserToken {
}
//------------------------------------------------------------------------------
/** \biref Get value of the token.
/** \brifef Get value of the token.
Only applicable to variable and value tokens.
*/
@@ -299,7 +299,7 @@ class ParserToken {
case cmVAR:
return *((TBase *)m_pTok);
default:
throw ParserError(ecVAL_EXPECTED);
return ParserError(ecVAL_EXPECTED);
}
}