diff options
author | chriseth <chris@ethereum.org> | 2018-08-06 17:55:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-06 17:55:01 +0800 |
commit | 74e6067347eb822c2e107c29d6ea58f22b328de7 (patch) | |
tree | f96cebd7c011543a64b568df42606b2fb8f26601 /libdevcore | |
parent | 3576980710e019165db272afb4fc5e80f8bd5bff (diff) | |
parent | 6c3b48ddfcfb0849e1083cea8d4fae4446511be1 (diff) | |
download | dexon-solidity-74e6067347eb822c2e107c29d6ea58f22b328de7.tar dexon-solidity-74e6067347eb822c2e107c29d6ea58f22b328de7.tar.gz dexon-solidity-74e6067347eb822c2e107c29d6ea58f22b328de7.tar.bz2 dexon-solidity-74e6067347eb822c2e107c29d6ea58f22b328de7.tar.lz dexon-solidity-74e6067347eb822c2e107c29d6ea58f22b328de7.tar.xz dexon-solidity-74e6067347eb822c2e107c29d6ea58f22b328de7.tar.zst dexon-solidity-74e6067347eb822c2e107c29d6ea58f22b328de7.zip |
Merge pull request #4602 from hackaugusto/warnings
Added guards for unknown pragmas
Diffstat (limited to 'libdevcore')
-rw-r--r-- | libdevcore/Common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libdevcore/Common.h b/libdevcore/Common.h index 2543855d..0363d9a2 100644 --- a/libdevcore/Common.h +++ b/libdevcore/Common.h @@ -40,7 +40,6 @@ #include <libdevcore/vector_ref.h> #if defined(__GNUC__) -#pragma warning(push) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-parameter" #endif // defined(__GNUC__) @@ -57,7 +56,6 @@ #include <boost/multiprecision/cpp_int.hpp> #if defined(__GNUC__) -#pragma warning(pop) #pragma GCC diagnostic pop #endif // defined(__GNUC__) |