summaryrefslogtreecommitdiffstats
path: root/ipc/chromium/src/base/hash_tables.h
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-06-30 07:23:50 +0200
committerGitHub <noreply@github.com>2018-06-30 07:23:50 +0200
commit86c08f4c4e41ea6de54d7353a9bfec065bcf205a (patch)
tree1373ecb7c6bc73fb63167a626f959cbedda3778f /ipc/chromium/src/base/hash_tables.h
parenta3b070147ab83ff9ef4c74be02bfc1b6b2fb6feb (diff)
parentaad61148c01ea1ddfda7ab6cc62d8a639597ce9f (diff)
downloadUXP-86c08f4c4e41ea6de54d7353a9bfec065bcf205a.tar
UXP-86c08f4c4e41ea6de54d7353a9bfec065bcf205a.tar.gz
UXP-86c08f4c4e41ea6de54d7353a9bfec065bcf205a.tar.lz
UXP-86c08f4c4e41ea6de54d7353a9bfec065bcf205a.tar.xz
UXP-86c08f4c4e41ea6de54d7353a9bfec065bcf205a.zip
Merge pull request #570 from trav90/code-cleanup
Remove unnecessary GCC version checks
Diffstat (limited to 'ipc/chromium/src/base/hash_tables.h')
-rw-r--r--ipc/chromium/src/base/hash_tables.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/ipc/chromium/src/base/hash_tables.h b/ipc/chromium/src/base/hash_tables.h
index 956cadb3d..9e8d6b110 100644
--- a/ipc/chromium/src/base/hash_tables.h
+++ b/ipc/chromium/src/base/hash_tables.h
@@ -31,18 +31,14 @@
#ifdef __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wshadow"
-# if MOZ_GCC_VERSION_AT_LEAST(4, 9, 0)
-# pragma GCC diagnostic ignored "-Wshadow-local"
-# endif
+# pragma GCC diagnostic ignored "-Wshadow-local"
#endif
#include <hash_map>
#include <hash_set>
#ifdef __GNUC__
-# if MOZ_GCC_VERSION_AT_LEAST(4, 9, 0)
-# pragma GCC diagnostic pop // -Wshadow-local
-# endif
+# pragma GCC diagnostic pop // -Wshadow-local
# pragma GCC diagnostic pop // -Wshadow
#endif