diff options
-rw-r--r-- | pugl/detail/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pugl/detail/types.h b/pugl/detail/types.h index d229848..dc0cce0 100644 --- a/pugl/detail/types.h +++ b/pugl/detail/types.h @@ -28,12 +28,12 @@ #include <stdint.h> // Unused parameter macro to suppresses warnings and make it impossible to use -#if defined(__cplusplus) || defined(_MSC_VER) +#if defined(__cplusplus) # define PUGL_UNUSED(name) #elif defined(__GNUC__) # define PUGL_UNUSED(name) name##_unused __attribute__((__unused__)) #else -# define PUGL_UNUSED(name) +# define PUGL_UNUSED(name) name #endif /** Platform-specific world internals. */ |