Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/fbgemm/Utils.h')
-rw-r--r--include/fbgemm/Utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fbgemm/Utils.h b/include/fbgemm/Utils.h
index 3976790..7cb86d4 100644
--- a/include/fbgemm/Utils.h
+++ b/include/fbgemm/Utils.h
@@ -16,7 +16,7 @@
# define ALIGNED_MALLOC(size, alignment) _aligned_malloc(size, alignment)
# define FREE(ptr) _aligned_free(ptr)
#else
-# define ALWAYS_INLINE __attribute__((always_inline))
+# define ALWAYS_INLINE ALWAYS_INLINE
# define ALIGNED_MALLOC(size, alignment) aligned_alloc(alignment, size)
# define FREE(ptr) free(ptr)
#endif