summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lmath.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-04-01 17:49:11 +0200
committerRobin Gareus <robin@gareus.org>2015-04-01 17:59:32 +0200
commit826e25cbf34070089ca35b8eba86ef4cbe6108c9 (patch)
treec03e7cdeaca7f7747314e4d4ad4e1a8aa9f3845d /libs/ardour/ardour/lmath.h
parente31d6a90f77d61ad90e6e37096ef6371840e2a3b (diff)
NOOP, just whitespace
Diffstat (limited to 'libs/ardour/ardour/lmath.h')
-rw-r--r--libs/ardour/ardour/lmath.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/lmath.h b/libs/ardour/ardour/lmath.h
index bac1457cde..4bf1f50357 100644
--- a/libs/ardour/ardour/lmath.h
+++ b/libs/ardour/ardour/lmath.h
@@ -1,13 +1,13 @@
#include "math.h"
#if defined __DARWIN_NO_LONG_LONG && defined MAC_OS_X_VERSION_MIN_REQUIRED && MAC_OS_X_VERSION_MIN_REQUIRED <= 1040
-static inline long long int llrint ( double x )
+static inline long long int llrint (double x)
{
- return (long long int)rint( x );
+ return (long long int)rint (x);
}
static inline long long int llrintf (float x)
{
- return (long long int)rintf ( x );
+ return (long long int)rintf (x);
}
#endif