diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-15 22:00:28 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-15 22:00:28 +0800 |
commit | 95fc27cba9a2241fbc438f3982f3642fe5a4bfe5 (patch) | |
tree | b748fae80d7e47671dd049517e67a285deb246f8 | |
parent | 1515f140b3bc2882aa8e2495155c775d05883ed1 (diff) | |
download | dexon-solidity-95fc27cba9a2241fbc438f3982f3642fe5a4bfe5.tar dexon-solidity-95fc27cba9a2241fbc438f3982f3642fe5a4bfe5.tar.gz dexon-solidity-95fc27cba9a2241fbc438f3982f3642fe5a4bfe5.tar.bz2 dexon-solidity-95fc27cba9a2241fbc438f3982f3642fe5a4bfe5.tar.lz dexon-solidity-95fc27cba9a2241fbc438f3982f3642fe5a4bfe5.tar.xz dexon-solidity-95fc27cba9a2241fbc438f3982f3642fe5a4bfe5.tar.zst dexon-solidity-95fc27cba9a2241fbc438f3982f3642fe5a4bfe5.zip |
also add compiler error if include order could cause a problem in windows
-rw-r--r-- | Token.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -47,6 +47,10 @@ #include <libsolidity/Utils.h> #include <libsolidity/Exceptions.h> +#if defined(DELETE) +#error The macro "DELETE" from windows.h conflicts with this file. Please change the order of includes. +#endif + namespace dev { namespace solidity |