* testsuite/26_numerics/complex/requirements/constexpr_functions.cc:
Use constexpr where needed.
From-SVN: r229883
+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
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();
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);