1
1

- Compiling with --enable-picky plus -Wextra, we get

several errors on unused parameters -- as this header
   is included in several files, this shows up too often.

This commit was SVN r21156.
Этот коммит содержится в:
Rainer Keller 2009-05-05 13:10:54 +00:00
родитель 9bcc47b05c
Коммит 4a7e078dae

Просмотреть файл

@ -57,7 +57,7 @@ static inline void DUMP( char* fmt, ... )
# if defined(__GNUC__) && !defined(__STDC__)
# define DUMP(ARGS...)
# else
static inline void DUMP( char* fmt, ...) {
static inline void DUMP( char* fmt __opal_attribute_unused__, ...) {
#if defined(__PGI)
/* Some compilers complain if we have ... and no
corresponding va_start() */