From aa3b01a556a60ce09123e93263642193da86982b Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 11 Feb 2019 15:52:03 +0100 Subject: compat/macros: remove prefix Let's not be concerned about global namespace pollution. These identifiers aren't exposed in the api/ directory. --- compat/shm.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'compat/shm.h') diff --git a/compat/shm.h b/compat/shm.h index 814ce90c..5ea6c80a 100644 --- a/compat/shm.h +++ b/compat/shm.h @@ -32,10 +32,10 @@ class OTR_COMPAT_EXPORT shm_wrapper final #endif public: - cc_noinline shm_wrapper(const char *shm_name, const char *mutex_name, int map_size); - cc_noinline ~shm_wrapper(); - cc_noinline bool lock(); - cc_noinline bool unlock(); - cc_noinline bool success(); + never_inline shm_wrapper(const char *shm_name, const char *mutex_name, int map_size); + never_inline ~shm_wrapper(); + never_inline bool lock(); + never_inline bool unlock(); + never_inline bool success(); inline void* ptr() { return mem; } }; -- cgit v1.2.3