diff options
author | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-02 20:20:33 +0800 |
---|---|---|
committer | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-02 20:20:33 +0800 |
commit | f61c3232449d36cc44bcff70240f5292bf8f9f16 (patch) | |
tree | 4e01f1f1804dc1381bb8464d9f0ef7a2671330d3 /Parser.cpp | |
parent | 55d0e1c34ef3c14b2c262fe7edd4fdc2f18bcfb5 (diff) | |
download | dexon-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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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()); } |