From 70d6105c6a5356e2b5dadeae45751239c080cace Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Thu, 20 Sep 2012 18:10:34 -0700 Subject: fun with inlines --- lib/element_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/element_impl.hpp') diff --git a/lib/element_impl.hpp b/lib/element_impl.hpp index 39895fe..d791cb7 100644 --- a/lib/element_impl.hpp +++ b/lib/element_impl.hpp @@ -33,12 +33,12 @@ #include #include -static inline unsigned long myulround(const double x) +static GRAS_FORCE_INLINE unsigned long myulround(const double x) { return (unsigned long)(x + 0.5); } -static inline unsigned long long myullround(const double x) +static GRAS_FORCE_INLINE unsigned long long myullround(const double x) { return (unsigned long long)(x + 0.5); } -- cgit