diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 20:17:47 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 20:17:47 +0900 |
| commit | b557321865d43aa125591f965a459067ee93bc89 (patch) | |
| tree | 285108f436e87c91db0a9a29fef1724c199a85c1 /libk3b/plugin | |
| parent | fb03d48b178d7f51fd7f73fa622d8cb2ae3f7505 (diff) | |
| download | k3b-b557321865d43aa125591f965a459067ee93bc89.tar.gz k3b-b557321865d43aa125591f965a459067ee93bc89.zip | |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libk3b/plugin')
| -rw-r--r-- | libk3b/plugin/libsamplerate/float_cast.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libk3b/plugin/libsamplerate/float_cast.h b/libk3b/plugin/libsamplerate/float_cast.h index af362e3..7088007 100644 --- a/libk3b/plugin/libsamplerate/float_cast.h +++ b/libk3b/plugin/libsamplerate/float_cast.h @@ -121,7 +121,7 @@ #define lrintf float2int inline int - float2int (register float in) + float2int (float in) { long res [2] ; asm @@ -132,7 +132,7 @@ } /* float2int */ inline int - double2int (register double in) + double2int (double in) { long res [2] ; asm @@ -157,7 +157,7 @@ #define lrintf float2int inline static long int - float2int (register float in) + float2int (float in) { int res [2] ; __asm__ __volatile__ @@ -172,7 +172,7 @@ } /* lrintf */ inline static long int - double2int (register double in) + double2int (double in) { int res [2] ; __asm__ __volatile__ |
