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:40 +01:00
parent 4dc3335cda
commit 5b4ad10b3c
2 changed files with 4 additions and 4 deletions
+2 -2
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);