diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-24 00:14:59 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-25 00:16:22 +0800 |
commit | 1891020ffb7d91b7eca4f69cc65e3722d6920361 (patch) | |
tree | c120bea18512e313f9f97fb0500e292a1b3f0fe8 /Exceptions.h | |
parent | 38cb123a82dfa0d77c7eb629dfb9307463548a12 (diff) | |
download | dexon-solidity-1891020ffb7d91b7eca4f69cc65e3722d6920361.tar dexon-solidity-1891020ffb7d91b7eca4f69cc65e3722d6920361.tar.gz dexon-solidity-1891020ffb7d91b7eca4f69cc65e3722d6920361.tar.bz2 dexon-solidity-1891020ffb7d91b7eca4f69cc65e3722d6920361.tar.lz dexon-solidity-1891020ffb7d91b7eca4f69cc65e3722d6920361.tar.xz dexon-solidity-1891020ffb7d91b7eca4f69cc65e3722d6920361.tar.zst dexon-solidity-1891020ffb7d91b7eca4f69cc65e3722d6920361.zip |
Moving Source Location libdevcore
- Big plus is we now remove the useless header libsolibity/BaseTypes.h
Diffstat (limited to 'Exceptions.h')
-rw-r--r-- | Exceptions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Exceptions.h b/Exceptions.h index 0b25abee..48dfc52e 100644 --- a/Exceptions.h +++ b/Exceptions.h @@ -24,7 +24,7 @@ #include <string> #include <libdevcore/Exceptions.h> -#include <libsolidity/BaseTypes.h> +#include <libdevcore/SourceLocation.h> namespace dev { @@ -38,7 +38,7 @@ struct CompilerError: virtual Exception {}; struct InternalCompilerError: virtual Exception {}; struct DocstringParsingError: virtual Exception {}; -using errinfo_sourceLocation = boost::error_info<struct tag_sourceLocation, Location>; +using errinfo_sourceLocation = boost::error_info<struct tag_sourceLocation, SourceLocation>; } } |