diff options
author | Erik Schnetter <schnetter@gmail.com> | 2013-07-25 09:06:40 -0700 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2013-07-25 09:06:40 -0700 |
commit | c911dadc52ce49e438430a2954a3b33dc35620a4 (patch) | |
tree | acd0b19e35fedf89c3b3cc2e9b6ad4df61c8bfbb | |
parent | c9f6d4983f1d84ac4b922b41b8b24a2cf2e00852 (diff) | |
download | vecmathlib-c911dadc52ce49e438430a2954a3b33dc35620a4.zip vecmathlib-c911dadc52ce49e438430a2954a3b33dc35620a4.tar.gz |
Sort captured std:: functions alphabetically
-rw-r--r-- | floattypes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/floattypes.h b/floattypes.h index 73e966c..c0ae1a9 100644 --- a/floattypes.h +++ b/floattypes.h @@ -76,8 +76,8 @@ namespace std { #undef isnormal #undef signbit - inline float asinh(float x) { return ::asinhf(x); } inline float acosh(float x) { return ::acoshf(x); } + inline float asinh(float x) { return ::asinhf(x); } inline float atanh(float x) { return ::atanh(x); } inline float cbrt(float x) { return ::cbrtf(x); } // inline float ceil(float x) { return ::ceilf(x); } @@ -105,8 +105,8 @@ namespace std { inline bool signbit(float x) { return libc_signbit(x); } inline float trunc(float x) { return ::truncf(x); } - inline double asinh(double x) { return ::asinh(x); } inline double acosh(double x) { return ::acosh(x); } + inline double asinh(double x) { return ::asinh(x); } inline double atanh(double x) { return ::atanh(x); } inline double cbrt(double x) { return ::cbrt(x); } // inline double ceil(double x) { return ::ceil(x); } |