diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-12-17 22:33:15 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-12-17 22:33:15 +0800 |
commit | b185d01a263fb40315cffe7789963eee89cb19eb (patch) | |
tree | a544eb0d49a6d48aeda19e0fe34bd21089fde1a6 /libsolidity/ast/ASTJsonConverter.cpp | |
parent | 332f914e4ef45f92c89beb87a8bb02ba5e85592b (diff) | |
download | dexon-solidity-b185d01a263fb40315cffe7789963eee89cb19eb.tar.gz dexon-solidity-b185d01a263fb40315cffe7789963eee89cb19eb.tar.zst dexon-solidity-b185d01a263fb40315cffe7789963eee89cb19eb.zip |
Sort includes in libsolidity/ast
Diffstat (limited to 'libsolidity/ast/ASTJsonConverter.cpp')
-rw-r--r-- | libsolidity/ast/ASTJsonConverter.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libsolidity/ast/ASTJsonConverter.cpp b/libsolidity/ast/ASTJsonConverter.cpp index 1a2b3345..f8222598 100644 --- a/libsolidity/ast/ASTJsonConverter.cpp +++ b/libsolidity/ast/ASTJsonConverter.cpp @@ -20,11 +20,12 @@ */ #include <libsolidity/ast/ASTJsonConverter.h> -#include <boost/algorithm/string/join.hpp> -#include <libdevcore/UTF8.h> + #include <libsolidity/ast/AST.h> #include <libyul/AsmData.h> #include <libyul/AsmPrinter.h> +#include <libdevcore/UTF8.h> +#include <boost/algorithm/string/join.hpp> using namespace std; using namespace langutil; |