Commit dce573c4 by Paolo Carlini Committed by Paolo Carlini

cmath: Fix typo in comment.

2015-08-19  Paolo Carlini  <paolo.carlini@oracle.com>

	* include/c_global/cmath: Fix typo in comment.

From-SVN: r227007
parent 157177af
2015-08-19 Paolo Carlini <paolo.carlini@oracle.com> 2015-08-19 Paolo Carlini <paolo.carlini@oracle.com>
* include/c_global/cmath: Fix typo in comment.
2015-08-19 Paolo Carlini <paolo.carlini@oracle.com>
* include/c_global/cmath: Revert fix for libstdc++/58625, no * include/c_global/cmath: Revert fix for libstdc++/58625, no
longer necessary (__builtin_signbit is now type-generic). longer necessary (__builtin_signbit is now type-generic).
......
...@@ -650,7 +650,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -650,7 +650,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
isnormal(_Tp __x) isnormal(_Tp __x)
{ return __x != 0 ? true : false; } { return __x != 0 ? true : false; }
// Note: c++/36757 is fixed, __builtin_signbit is type-generic. // Note: middle-end/36757 is fixed, __builtin_signbit is type-generic.
constexpr bool constexpr bool
signbit(float __x) signbit(float __x)
{ return __builtin_signbit(__x); } { return __builtin_signbit(__x); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment