summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-10-15 12:41:42 +0200
committerGitHub <noreply@github.com>2021-10-15 12:41:42 +0200
commit25f89a847c2d7c5d3d36af28d4ef44f050afc0da (patch)
tree3a73e14679e165bfcbbb3415dfe65fcff9232f69 /core
parente2bfb27efb858c4a1314d314386531cbcdfcf335 (diff)
parentcd21cc683a565a775b31aad4bd1e61d6c791d5ed (diff)
Merge pull request #53827 from akien-mga/scons-debug-dev-enabled-sconstruct
Diffstat (limited to 'core')
-rw-r--r--core/typedefs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/typedefs.h b/core/typedefs.h
index dde254af23..8ca3d13e63 100644
--- a/core/typedefs.h
+++ b/core/typedefs.h
@@ -62,9 +62,9 @@
#endif
#endif
-// Should always inline, except in debug builds because it makes debugging harder.
+// Should always inline, except in dev builds because it makes debugging harder.
#ifndef _FORCE_INLINE_
-#ifdef DISABLE_FORCED_INLINE
+#ifdef DEV_ENABLED
#define _FORCE_INLINE_ inline
#else
#define _FORCE_INLINE_ _ALWAYS_INLINE_