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
This commit is contained in:
Joseph Myers 2005-11-04 01:16:32 +00:00 committed by Joseph Myers
parent 651ed94280
commit a63607ed43
6 changed files with 16 additions and 5 deletions

View file

@ -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);
};