diff options
author | Tim Hughes <tim@twistedfury.com> | 2014-03-06 00:32:37 +0800 |
---|---|---|
committer | Tim Hughes <tim@twistedfury.com> | 2014-03-06 07:41:57 +0800 |
commit | 737218817997b9d20a2f8e99016310c906ffe504 (patch) | |
tree | 8658c4ebadca75a854e6f22f3feb11b451faba69 /hexPrefix.cpp | |
parent | a02ab99810724c9e0a80d51acfab6150c86846e5 (diff) | |
download | dexon-solidity-737218817997b9d20a2f8e99016310c906ffe504.tar dexon-solidity-737218817997b9d20a2f8e99016310c906ffe504.tar.gz dexon-solidity-737218817997b9d20a2f8e99016310c906ffe504.tar.bz2 dexon-solidity-737218817997b9d20a2f8e99016310c906ffe504.tar.lz dexon-solidity-737218817997b9d20a2f8e99016310c906ffe504.tar.xz dexon-solidity-737218817997b9d20a2f8e99016310c906ffe504.tar.zst dexon-solidity-737218817997b9d20a2f8e99016310c906ffe504.zip |
Fixed VS2013 projects and compile errors.
Enable and fix addition warnings (-Wextra).
Disable unknown pragma warning (avoids messy wrapping pragmas in compiler guards).
Tidy up some of the waring suppression for 3rd part libraries by wrapping with a header.
Diffstat (limited to 'hexPrefix.cpp')
-rw-r--r-- | hexPrefix.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hexPrefix.cpp b/hexPrefix.cpp index 62f4d491..0db8e75e 100644 --- a/hexPrefix.cpp +++ b/hexPrefix.cpp @@ -21,8 +21,7 @@ */ #include <fstream> -#include "../json_spirit/json_spirit_reader_template.h" -#include "../json_spirit/json_spirit_writer_template.h" +#include "JsonSpiritHeaders.h" #include "TrieCommon.h" #include "Log.h" using namespace std; |