diff options
Diffstat (limited to 'lib/c++defs.h')
| -rw-r--r-- | lib/c++defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/c++defs.h b/lib/c++defs.h index 3e6aaabc9ce..182c2b3a88d 100644 --- a/lib/c++defs.h +++ b/lib/c++defs.h | |||
| @@ -268,7 +268,7 @@ | |||
| 268 | _GL_CXXALIASWARN_2 (func, namespace) | 268 | _GL_CXXALIASWARN_2 (func, namespace) |
| 269 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, | 269 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, |
| 270 | we enable the warning only when not optimizing. */ | 270 | we enable the warning only when not optimizing. */ |
| 271 | # if !__OPTIMIZE__ | 271 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) |
| 272 | # define _GL_CXXALIASWARN_2(func,namespace) \ | 272 | # define _GL_CXXALIASWARN_2(func,namespace) \ |
| 273 | _GL_WARN_ON_USE (func, \ | 273 | _GL_WARN_ON_USE (func, \ |
| 274 | "The symbol ::" #func " refers to the system function. " \ | 274 | "The symbol ::" #func " refers to the system function. " \ |
| @@ -296,7 +296,7 @@ | |||
| 296 | _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) | 296 | _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) |
| 297 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, | 297 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, |
| 298 | we enable the warning only when not optimizing. */ | 298 | we enable the warning only when not optimizing. */ |
| 299 | # if !__OPTIMIZE__ | 299 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) |
| 300 | # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ | 300 | # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ |
| 301 | _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \ | 301 | _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \ |
| 302 | "The symbol ::" #func " refers to the system function. " \ | 302 | "The symbol ::" #func " refers to the system function. " \ |