diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-11-06 11:36:12 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-11-06 11:36:12 -0800 |
commit | a5d376b02ec9838cb0651ddc2f61025d196a77e5 (patch) | |
tree | c098d827afaf9635675429eb7a76629a084b3ae0 /src/regex.c | |
parent | 2ec9db5d1e97275a2a4c27e04ed6f3e8c3382cab (diff) |
* regex.c: Fix --enable-gcc-warning glitch with GCC 4.5.2.
Diffstat (limited to 'src/regex.c')
-rw-r--r-- | src/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c index 4ab98bbf09..615fb3fdf3 100644 --- a/src/regex.c +++ b/src/regex.c @@ -43,7 +43,7 @@ # endif #endif -#if 4 < __GNUC__ + (5 <= __GNUC_MINOR__) && ! defined __clang__ +#if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) && ! defined __clang__ # pragma GCC diagnostic ignored "-Wunused-but-set-variable" #endif |