diff options
author | LianaHus <liana@ethdev.com> | 2015-10-15 17:50:25 +0800 |
---|---|---|
committer | LianaHus <liana@ethdev.com> | 2015-10-15 17:50:25 +0800 |
commit | 675aed1edfcff1cf7cd68cc92582d987820e4729 (patch) | |
tree | 480726e0c76b3b4401c8e51a0d9d4f24b8d84a22 /libsolidity/Utils.h | |
parent | 7a7a7dcbb59e1126679e7e8f6eab16992fffb51c (diff) | |
download | dexon-solidity-675aed1edfcff1cf7cd68cc92582d987820e4729.tar dexon-solidity-675aed1edfcff1cf7cd68cc92582d987820e4729.tar.gz dexon-solidity-675aed1edfcff1cf7cd68cc92582d987820e4729.tar.bz2 dexon-solidity-675aed1edfcff1cf7cd68cc92582d987820e4729.tar.lz dexon-solidity-675aed1edfcff1cf7cd68cc92582d987820e4729.tar.xz dexon-solidity-675aed1edfcff1cf7cd68cc92582d987820e4729.tar.zst dexon-solidity-675aed1edfcff1cf7cd68cc92582d987820e4729.zip |
fixed new tests
Diffstat (limited to 'libsolidity/Utils.h')
-rw-r--r-- | libsolidity/Utils.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libsolidity/Utils.h b/libsolidity/Utils.h index 05c5fa6f..48bb1e47 100644 --- a/libsolidity/Utils.h +++ b/libsolidity/Utils.h @@ -23,6 +23,15 @@ #pragma once #include <libdevcore/Assertions.h> +#include <libsolidity/Exceptions.h> + +namespace dev +{ +namespace solidity +{ +struct InternalCompilerError; +} +} /// Assertion that throws an InternalCompilerError containing the given description if it is not met. #define solAssert(CONDITION, DESCRIPTION) \ |