diff options
author | trav90 <travawine@openmailbox.org> | 2018-02-04 12:31:30 -0600 |
---|---|---|
committer | trav90 <travawine@openmailbox.org> | 2018-02-04 12:31:30 -0600 |
commit | 65c311a7ef443b953c4f618afc6b81578a5dea3b (patch) | |
tree | 77b44a2c440e9262e26ea626c07d4f8815b3fc74 /mfbt | |
parent | 048149389cd9d216bd36a2ecde2076312c265c9e (diff) | |
download | uxp-65c311a7ef443b953c4f618afc6b81578a5dea3b.tar.gz |
Remove checks for GCC < 4.9
Diffstat (limited to 'mfbt')
-rw-r--r-- | mfbt/Attributes.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mfbt/Attributes.h b/mfbt/Attributes.h index df6172f31b..c875e3a8cd 100644 --- a/mfbt/Attributes.h +++ b/mfbt/Attributes.h @@ -562,9 +562,7 @@ # define MOZ_HAVE_REF_QUALIFIERS #elif defined(__GNUC__) # include "mozilla/Compiler.h" -# if MOZ_GCC_VERSION_AT_LEAST(4, 8, 1) -# define MOZ_HAVE_REF_QUALIFIERS -# endif +# define MOZ_HAVE_REF_QUALIFIERS #endif #endif /* __cplusplus */ |