summaryrefslogtreecommitdiff
path: root/include/asterisk/inline_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/inline_api.h')
-rw-r--r--include/asterisk/inline_api.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asterisk/inline_api.h b/include/asterisk/inline_api.h
index 291a83828..5f7a43bdc 100644
--- a/include/asterisk/inline_api.h
+++ b/include/asterisk/inline_api.h
@@ -33,7 +33,7 @@
copies of the function body are not built in different modules.
However, since this doesn't work for clang, we go with 'static'
anyway and hope for the best!
- - when LOW_MEMORY is defined, inlining should be disabled
+ - when DISABLE_INLINE is defined, inlining should be disabled
completely, even if the compiler is configured to support it
The AST_INLINE_API macro allows this to happen automatically, when
@@ -45,7 +45,7 @@
including the header file
*/
-#if !defined(LOW_MEMORY) && !defined(DISABLE_INLINE)
+#if !defined(DISABLE_INLINE)
#if !defined(AST_API_MODULE)
#if defined(__clang__) || defined(__GNUC_STDC_INLINE__)
@@ -57,7 +57,7 @@
#define AST_INLINE_API(hdr, body) hdr; hdr body
#endif
-#else /* defined(LOW_MEMORY) */
+#else /* defined(DISABLE_INLINE) */
#if !defined(AST_API_MODULE)
#define AST_INLINE_API(hdr, body) hdr;