pike.git/
src/
global.h
Branch:
Tag:
Non-build tags
All tags
No tags
2014-08-22
2014-08-22 16:00:14 by Arne Goedeke <el@laramies.com>
1d4cf1f75eb95e562cd598103dd147ebfc765543 (
17
lines) (+
11
/-
6
)
[
Show
|
Annotate
]
Branch:
8.0
Fixed some warnings about unused parameters
569:
# define UNUSED(x) PIKE_CONCAT(x,_UNUSED) # endif #endif
-
#
ifndef DEBUGUSED
-
#
ifdef PIKE_DEBUG
-
#
define DEBUGUSED(x) x
-
#
else
-
#
define DEBUGUSED(x) UNUSED(x)
-
# endif
+
#ifdef PIKE_DEBUG
+
# define DEBUGUSED(x) x
+
#else
+
# define DEBUGUSED(x) UNUSED(x)
#endif
-
+
#ifdef DEBUG_MALLOC
+
# define DMALLOCUSED(x) x
+
#else
+
# define DMALLOCUSED(x) UNUSED(x)
+
#endif
-
+
/* PMOD_EXPORT exports a function / variable vfsh. */ #ifndef PMOD_EXPORT # if defined (__NT__) && defined (USE_DLL)