Mark StandardCompiler::compile as noexcept

It has a generic catch statement and shouldn't leak out exceptions.
This commit is contained in:
Alex Beregszaszi 2018-08-08 13:22:33 +01:00
parent 4dc3335cda
commit 5b4ad10b3c
2 changed files with 4 additions and 4 deletions

View File

@ -567,7 +567,7 @@ Json::Value StandardCompiler::compileInternal(Json::Value const& _input)
return output;
}
Json::Value StandardCompiler::compile(Json::Value const& _input)
Json::Value StandardCompiler::compile(Json::Value const& _input) noexcept
{
try
{
@ -591,7 +591,7 @@ Json::Value StandardCompiler::compile(Json::Value const& _input)
}
}
string StandardCompiler::compile(string const& _input)
string StandardCompiler::compile(string const& _input) noexcept
{
Json::Value input;
string errors;

View File

@ -47,10 +47,10 @@ public:
/// Sets all input parameters according to @a _input which conforms to the standardized input
/// format, performs compilation and returns a standardized output.
Json::Value compile(Json::Value const& _input);
Json::Value compile(Json::Value const& _input) noexcept;
/// Parses input as JSON and peforms the above processing steps, returning a serialized JSON
/// output. Parsing errors are returned as regular errors.
std::string compile(std::string const& _input);
std::string compile(std::string const& _input) noexcept;
private:
Json::Value compileInternal(Json::Value const& _input);