diff options
author | Joseph Myers <joseph@codesourcery.com> | 2005-11-04 01:16:32 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2005-11-04 01:16:32 +0000 |
commit | a63607ed439ce64133d0c1927e8ef7eccd013539 (patch) | |
tree | 771a18a7e0143049cc335c7595e497a28f9625ec /libcpp/include/cpplib.h | |
parent | 651ed94280e4b88bf4fb69be0451cf2766ec9ab0 (diff) | |
download | gcc-a63607ed439ce64133d0c1927e8ef7eccd013539.zip gcc-a63607ed439ce64133d0c1927e8ef7eccd013539.tar.gz gcc-a63607ed439ce64133d0c1927e8ef7eccd013539.tar.bz2 |
cp-tree.h (cp_cpp_error), [...]): Take va_list* parameter.
gcc/cp:
* cp-tree.h (cp_cpp_error), error.c (cp_cpp_error): Take va_list*
parameter.
libcpp:
* include/cpplib.h (struct cpp_callbacks): Make error take
va_list* parameter.
* errors.c (cpp_error): Update call to callback.
From-SVN: r106466
Diffstat (limited to 'libcpp/include/cpplib.h')
-rw-r--r-- | libcpp/include/cpplib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index c5d8e85..adae96b 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -473,7 +473,7 @@ struct cpp_callbacks /* Called to emit a diagnostic if client_diagnostic option is true. This callback receives the translated message. */ - void (*error) (cpp_reader *, int, const char *, va_list) + void (*error) (cpp_reader *, int, const char *, va_list *) ATTRIBUTE_PRINTF(3,0); }; |