mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Mark StandardCompiler::compile as noexcept
It has a generic catch statement and shouldn't leak out exceptions.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user