diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2012-04-14 15:06:57 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-04-14 15:06:57 +0200 |
commit | 8b63b48627961c0bf880eb4d57cf24d6a828dcd2 (patch) | |
tree | ddc6989b9d2a6081bc115c2095bd3c2aba729e16 /include | |
parent | b9ac64c2cb7965eae3dfa9fd1bf9a2bf04b1e2a5 (diff) |
headers: surround GCC attribute names with double underscores
This protects from attribute names being defined by third party's code.
Improvement: http://curl.haxx.se/mail/lib-2012-04/0127.html
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/typecheck-gcc.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/curl/typecheck-gcc.h b/include/curl/typecheck-gcc.h index 5c584b002..f8917e811 100644 --- a/include/curl/typecheck-gcc.h +++ b/include/curl/typecheck-gcc.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -141,8 +141,9 @@ __extension__ ({ \ /* To define a new warning, use _CURL_WARNING(identifier, "message") */ #define _CURL_WARNING(id, message) \ - static void __attribute__((warning(message))) __attribute__((unused)) \ - __attribute__((noinline)) id(void) { __asm__(""); } + static void __attribute__((__warning__(message))) \ + __attribute__((__unused__)) __attribute__((__noinline__)) \ + id(void) { __asm__(""); } _CURL_WARNING(_curl_easy_setopt_err_long, "curl_easy_setopt expects a long argument for this option") |