aboutsummaryrefslogtreecommitdiffstats
path: root/Parser.cpp
diff options
context:
space:
mode:
authorChristoph Jentzsch <jentzsch.software@gmail.com>2014-10-02 20:20:33 +0800
committerChristoph Jentzsch <jentzsch.software@gmail.com>2014-10-02 20:20:33 +0800
commitf61c3232449d36cc44bcff70240f5292bf8f9f16 (patch)
tree4e01f1f1804dc1381bb8464d9f0ef7a2671330d3 /Parser.cpp
parent55d0e1c34ef3c14b2c262fe7edd4fdc2f18bcfb5 (diff)
downloaddexon-solidity-f61c3232449d36cc44bcff70240f5292bf8f9f16.tar
dexon-solidity-f61c3232449d36cc44bcff70240f5292bf8f9f16.tar.gz
dexon-solidity-f61c3232449d36cc44bcff70240f5292bf8f9f16.tar.bz2
dexon-solidity-f61c3232449d36cc44bcff70240f5292bf8f9f16.tar.lz
dexon-solidity-f61c3232449d36cc44bcff70240f5292bf8f9f16.tar.xz
dexon-solidity-f61c3232449d36cc44bcff70240f5292bf8f9f16.tar.zst
dexon-solidity-f61c3232449d36cc44bcff70240f5292bf8f9f16.zip
Restructured exceptions. Boost::exception is now used primarily.
Diffstat (limited to 'Parser.cpp')
-rw-r--r--Parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser.cpp b/Parser.cpp
index 52a05174..e94e88e1 100644
--- a/Parser.cpp
+++ b/Parser.cpp
@@ -140,6 +140,6 @@ void dev::eth::parseTreeLLL(string const& _s, sp::utree& o_out)
qi::phrase_parse(ret, s.cend(), element, space, qi::skip_flag::dont_postskip, o_out);
for (auto i = ret; i != s.cend(); ++i)
if (!isspace(*i))
- throw std::exception();
+ BOOST_THROW_EXCEPTION(std::exception());
}