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

github.com/alexmarsev/soxr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Sykes <rob@rob-Ideapad-S205.(none)>2013-02-28 00:54:58 +0400
committerRob Sykes <rob@rob-Ideapad-S205.(none)>2013-02-28 01:19:41 +0400
commit7c31e3d54818c01b028e5fb972f5384303fc4adc (patch)
tree67fe373a186bdb6abedd7e629aef2ce5fe70f949
parentc5adbf7079a9cfc24e7ef2a3d1aeaab16d1fb44e (diff)
quash gcc warning: always_inline function might not be inlinable
-rw-r--r--src/pffft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pffft.c b/src/pffft.c
index 0aab690..9b4f59d 100644
--- a/src/pffft.c
+++ b/src/pffft.c
@@ -88,7 +88,7 @@
#endif
#if defined(COMPILER_GCC)
-# define ALWAYS_INLINE(return_type) return_type __attribute__ ((always_inline))
+# define ALWAYS_INLINE(return_type) inline return_type __attribute__ ((always_inline))
# define NEVER_INLINE(return_type) return_type __attribute__ ((noinline))
# define RESTRICT __restrict
/*# define VLA_ARRAY_ON_STACK(type__, varname__, size__) type__ varname__[size__]; */