diff options
Diffstat (limited to 'include/wabt/error.h')
-rw-r--r-- | include/wabt/error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wabt/error.h b/include/wabt/error.h index 9ea55e95..d16e1e65 100644 --- a/include/wabt/error.h +++ b/include/wabt/error.h @@ -30,7 +30,7 @@ enum class ErrorLevel { Error, }; -static WABT_INLINE const char* GetErrorLevelName(ErrorLevel error_level) { +static inline const char* GetErrorLevelName(ErrorLevel error_level) { switch (error_level) { case ErrorLevel::Warning: return "warning"; |