Remove an unused function successAssemble

Otherwise, I see a build failure:
    test/libjulia/Parser.cpp:92:6: error: ‘bool dev::solidity::test::{anonymous}::successAssemble(const string&, bool)’ defined but not used [-Werror=unused-function]
     bool successAssemble(string const& _source, bool _allowWarnings = true)
          ^~~~~~~~~~~~~~~
    cc1plus: all warnings being treated as errors
This commit is contained in:
Yoichi Hirai 2017-05-09 11:51:16 +02:00
parent 9e8e6dd57b
commit 9dac41d845
No known key found for this signature in database
GPG Key ID: E7B75D080FCF7992

View File

@ -89,11 +89,6 @@ bool successParse(std::string const& _source, bool _allowWarnings = true)
return !parseAndReturnFirstError(_source, _allowWarnings);
}
bool successAssemble(string const& _source, bool _allowWarnings = true)
{
return successParse(_source, _allowWarnings);
}
Error expectError(std::string const& _source, bool _allowWarnings = false)
{