From: Gonzalo A. <ga...@us...> - 2006-11-06 17:10:03
|
Update of /cvsroot/mod-c/ehtml/include In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv2415/include Modified Files: EHTMLApplication.h Log Message: Renamed logging methods that receive a va_list argument. g++ gets confused because a va_list is compatible with a char* (apparently). By renaming these methods, we eliminate the ambiguity between vararg methods and va_list methods. Index: EHTMLApplication.h =================================================================== RCS file: /cvsroot/mod-c/ehtml/include/EHTMLApplication.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** EHTMLApplication.h 12 Oct 2006 21:10:36 -0000 1.11 --- EHTMLApplication.h 6 Nov 2006 17:09:54 -0000 1.12 *************** *** 234,238 **** * Error logging method. */ ! void Error(const char* fmt, va_list l) const; /** --- 234,238 ---- * Error logging method. */ ! void vError(const char* fmt, va_list l) const; /** *************** *** 244,248 **** * Debug logging method. */ ! void Debug(const char* fmt, va_list l) const; /** --- 244,248 ---- * Debug logging method. */ ! void vDebug(const char* fmt, va_list l) const; /** |