aboutsummaryrefslogtreecommitdiff
path: root/Gem/develop/include/Gem/Utils/nop.h
diff options
context:
space:
mode:
Diffstat (limited to 'Gem/develop/include/Gem/Utils/nop.h')
-rw-r--r--Gem/develop/include/Gem/Utils/nop.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Gem/develop/include/Gem/Utils/nop.h b/Gem/develop/include/Gem/Utils/nop.h
index 8431ef2..75875ef 100644
--- a/Gem/develop/include/Gem/Utils/nop.h
+++ b/Gem/develop/include/Gem/Utils/nop.h
@@ -15,10 +15,11 @@ LOG
#ifndef _INCLUDE__GEM_UTILS_NOP_H_
#define _INCLUDE__GEM_UTILS_NOP_H_
-#if __STDC_VERSION__ >= 199901L
-# define nop(...)
+#if __cplusplus > 199711L || __STDC_VERSION__ >= 199901L
+# define nop(...) do {} while (0)
#else
-# define nop
+static inline void gem__nop(...) { ; }
+# define nop gem__nop
#endif
static inline void gem__nop_post(void) { ; }