diff options
author | Gav Wood <i@gavwood.com> | 2014-10-08 05:07:56 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-10-08 05:07:56 +0800 |
commit | d4a0fc07e131fe59d397481b4969c6e44fb6b6db (patch) | |
tree | 34620c44d4cdac9f92e0fc06044b1745119ae80d | |
parent | 69ff5582e608e557d63ae8cd394bec9ca8576df5 (diff) | |
download | dexon-solidity-d4a0fc07e131fe59d397481b4969c6e44fb6b6db.tar.gz dexon-solidity-d4a0fc07e131fe59d397481b4969c6e44fb6b6db.tar.zst dexon-solidity-d4a0fc07e131fe59d397481b4969c6e44fb6b6db.zip |
More attempts to fix for the ultra-pedantic clang compiler.
-rw-r--r-- | hexPrefix.cpp | 3 | ||||
-rw-r--r-- | rlp.cpp | 1 | ||||
-rw-r--r-- | trie.cpp | 1 | ||||
-rw-r--r-- | vm.cpp | 1 |
4 files changed, 5 insertions, 1 deletions
diff --git a/hexPrefix.cpp b/hexPrefix.cpp index 9b65db0e..6ced839d 100644 --- a/hexPrefix.cpp +++ b/hexPrefix.cpp @@ -22,8 +22,9 @@ #include <fstream> #include "JsonSpiritHeaders.h" -#include <libdevcrypto/TrieCommon.h> #include <libdevcore/Log.h> +#include <libdevcore/CommonIO.h> +#include <libdevcrypto/TrieCommon.h> #include <boost/test/unit_test.hpp> using namespace std; @@ -25,6 +25,7 @@ #include <libdevcore/Log.h> #include <libdevcore/RLP.h> #include <libdevcore/Common.h> +#include <libdevcore/CommonIO.h> #include <boost/test/unit_test.hpp> #include <algorithm> #include "JsonSpiritHeaders.h" @@ -23,6 +23,7 @@ #include <fstream> #include <random> #include "JsonSpiritHeaders.h" +#include <libdevcore/CommonIO.h> #include <libdevcrypto/TrieDB.h> #include "TrieHash.h" #include "MemTrie.h" @@ -21,6 +21,7 @@ */ #include "vm.h" +#include <libdevcore/CommonIO.h> #define FILL_TESTS |