summaryrefslogtreecommitdiffstats
path: root/source/Globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Globals.h')
-rw-r--r--source/Globals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/Globals.h b/source/Globals.h
index 65db1b436..12cdd8c94 100644
--- a/source/Globals.h
+++ b/source/Globals.h
@@ -80,6 +80,8 @@ typedef short Int16;
TypeName(const TypeName &); \
void operator=(const TypeName &)
+// A macro that is used to mark unused function parameters, to avoid pedantic warnings in gcc
+#define UNUSED(X) (void)(X)