aboutsummaryrefslogtreecommitdiffstats
path: root/liblangutil/ErrorReporter.cpp
diff options
context:
space:
mode:
authorChristian Parpart <christian@ethereum.org>2018-11-15 00:11:55 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-11-22 03:13:44 +0800
commitd67322a1861d60a88151f7c25d6c3478a9a39acf (patch)
treeaf485e48c3436cd24e2db09a6a1bcf445605bae1 /liblangutil/ErrorReporter.cpp
parent80371e2d25ce3eb868d6f75b99a54af9dc6c1583 (diff)
downloaddexon-solidity-d67322a1861d60a88151f7c25d6c3478a9a39acf.tar.gz
dexon-solidity-d67322a1861d60a88151f7c25d6c3478a9a39acf.tar.zst
dexon-solidity-d67322a1861d60a88151f7c25d6c3478a9a39acf.zip
Introduce namespace `langutil` in liblangutil directory.
Also: - Use {}-style list initialisation for SourceLocation construction - Introduce new system includes - Changes the API of the Scanner to take source as value (with move) as opposed to as a reference
Diffstat (limited to 'liblangutil/ErrorReporter.cpp')
-rw-r--r--liblangutil/ErrorReporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/liblangutil/ErrorReporter.cpp b/liblangutil/ErrorReporter.cpp
index 5edb0eeb..5b6e0072 100644
--- a/liblangutil/ErrorReporter.cpp
+++ b/liblangutil/ErrorReporter.cpp
@@ -21,12 +21,12 @@
*/
#include <liblangutil/ErrorReporter.h>
-#include <libsolidity/ast/AST.h>
+#include <liblangutil/SourceLocation.h>
#include <memory>
using namespace std;
using namespace dev;
-using namespace dev::solidity;
+using namespace langutil;
ErrorReporter& ErrorReporter::operator=(ErrorReporter const& _errorReporter)
{