* testsuite/26_numerics/complex/requirements/constexpr.cc

* testsuite/26_numerics/complex/requirements/constexpr_functions.cc:
	Use constexpr where needed.

From-SVN: r229883
This commit is contained in:
Kai Tietz 2015-11-06 19:43:33 +00:00 committed by Jason Merrill
parent 9da92cbda9
commit 277ec793cb
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2015-11-06 Kai Tietz <ktietz70@googlemail.com>
* testsuite/26_numerics/complex/requirements/constexpr.cc
* testsuite/26_numerics/complex/requirements/constexpr_functions.cc:
Use constexpr where needed.
2015-11-06 David Malcolm <dmalcolm@redhat.com>
* testsuite/lib/libstdc++.exp (v3_target_compile): Add

View File

@ -34,7 +34,7 @@ namespace __gnu_test
void __constraint()
{
typedef typename _Ttesttype::_ComplexT _ComplexT;
const _ComplexT cc = { 1.1 };
constexpr _ComplexT cc = { 1.1 };
constexpr _Ttesttype a(cc);
constexpr auto v1 __attribute__((unused)) = a.real();
constexpr auto v2 __attribute__((unused)) = a.imag();

View File

@ -34,7 +34,7 @@ namespace __gnu_test
void __constraint()
{
typedef typename _Ttesttype::_ComplexT _ComplexT;
const _ComplexT cc = { 1.1 };
constexpr _ComplexT cc = { 1.1 };
constexpr _Ttesttype a(cc);
constexpr auto v1 __attribute__((unused)) = real(a);
constexpr auto v2 __attribute__((unused)) = imag(a);