diff options
Diffstat (limited to 'libcxx/include/cmath')
-rw-r--r-- | libcxx/include/cmath | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libcxx/include/cmath b/libcxx/include/cmath index f133de98fe6..7ddb5fd4baa 100644 --- a/libcxx/include/cmath +++ b/libcxx/include/cmath @@ -141,17 +141,17 @@ bool signbit(floating_point x); int fpclassify(floating_point x); -bool isfinite(floating_point x); -bool isinf(floating_point x); -bool isnan(floating_point x); -bool isnormal(floating_point x); - -bool isgreater(floating_point x, floating_point y); -bool isgreaterequal(floating_point x, floating_point y); -bool isless(floating_point x, floating_point y); -bool islessequal(floating_point x, floating_point y); -bool islessgreater(floating_point x, floating_point y); -bool isunordered(floating_point x, floating_point y); +bool isfinite(floating_point x); +bool isinf(floating_point x); +bool isnan(floating_point x); +bool isnormal(floating_point x); + +bool isgreater(floating_point x, floating_point y); +bool isgreaterequal(floating_point x, floating_point y); +bool isless(floating_point x, floating_point y); +bool islessequal(floating_point x, floating_point y); +bool islessgreater(floating_point x, floating_point y); +bool isunordered(floating_point x, floating_point y); floating_point acosh (arithmetic x); float acoshf(float x); @@ -297,11 +297,11 @@ long double truncl(long double x); */ -// FIXME: work around for Clang with -std=C++0x on OSX/iOS +// FIXME: work around for Clang with -std=C++0x on OSX/iOS #if defined(__clang__) && defined(__APPLE__) # pragma push_macro("__STRICT_ANSI__") # undef __STRICT_ANSI__ -#endif +#endif // defined(__clang__) && defined(__APPLE__) #include <__config> #include <math.h> |