mirror of git://gcc.gnu.org/git/gcc.git
Remove accidentally added 'constexpr' in previous commit
* acinclude.m4 (GLIBCXX_CHECK_MATH11_PROTO): Remove accidentally added 'constexpr' in previous commit. * configure: Regenerate. From-SVN: r233219
This commit is contained in:
parent
a011cd929d
commit
2158532f31
|
|
@ -1,5 +1,9 @@
|
||||||
2016-02-08 Jonathan Wakely <jwakely@redhat.com>
|
2016-02-08 Jonathan Wakely <jwakely@redhat.com>
|
||||||
|
|
||||||
|
* acinclude.m4 (GLIBCXX_CHECK_MATH11_PROTO): Remove accidentally
|
||||||
|
added 'constexpr' in previous commit.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
PR libstdc++/48891
|
PR libstdc++/48891
|
||||||
* acinclude.m4 (GLIBCXX_CHECK_MATH11_PROTO): Enable isinf and isnan
|
* acinclude.m4 (GLIBCXX_CHECK_MATH11_PROTO): Enable isinf and isnan
|
||||||
checks for all targets except *-*-solaris2.* and ensure we find the
|
checks for all targets except *-*-solaris2.* and ensure we find the
|
||||||
|
|
|
||||||
|
|
@ -2228,8 +2228,8 @@ AC_DEFUN([GLIBCXX_CHECK_MATH11_PROTO], [
|
||||||
#undef isinf
|
#undef isinf
|
||||||
namespace std {
|
namespace std {
|
||||||
using ::isinf;
|
using ::isinf;
|
||||||
constexpr bool isinf(float);
|
bool isinf(float);
|
||||||
constexpr bool isinf(long double);
|
bool isinf(long double);
|
||||||
}
|
}
|
||||||
using std::isinf;
|
using std::isinf;
|
||||||
bool b = isinf(0.0);
|
bool b = isinf(0.0);
|
||||||
|
|
|
||||||
|
|
@ -18284,8 +18284,8 @@ else
|
||||||
#undef isinf
|
#undef isinf
|
||||||
namespace std {
|
namespace std {
|
||||||
using ::isinf;
|
using ::isinf;
|
||||||
constexpr bool isinf(float);
|
bool isinf(float);
|
||||||
constexpr bool isinf(long double);
|
bool isinf(long double);
|
||||||
}
|
}
|
||||||
using std::isinf;
|
using std::isinf;
|
||||||
bool b = isinf(0.0);
|
bool b = isinf(0.0);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue