summaryrefslogtreecommitdiffstats
path: root/libcxx/test/numerics
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2013-08-07 19:39:48 +0000
committerHoward Hinnant <hhinnant@apple.com>2013-08-07 19:39:48 +0000
commitd098713aaf902ea7d4729b73f83af461dac45a0d (patch)
tree41fdfd9bfdea111c80febb2d08c27fb31fd44085 /libcxx/test/numerics
parentc5582b57c60e25ab2c2108f2c48e18c0b122bb6d (diff)
downloadbcm5719-llvm-d098713aaf902ea7d4729b73f83af461dac45a0d.tar.gz
bcm5719-llvm-d098713aaf902ea7d4729b73f83af461dac45a0d.zip
War on tabs
llvm-svn: 187906
Diffstat (limited to 'libcxx/test/numerics')
-rw-r--r--libcxx/test/numerics/complex.number/cmplx.over/imag.pass.cpp8
-rw-r--r--libcxx/test/numerics/complex.number/cmplx.over/real.pass.cpp8
-rw-r--r--libcxx/test/numerics/complex.number/complex.ops/complex_not_equals_complex.pass.cpp4
3 files changed, 10 insertions, 10 deletions
diff --git a/libcxx/test/numerics/complex.number/cmplx.over/imag.pass.cpp b/libcxx/test/numerics/complex.number/cmplx.over/imag.pass.cpp
index a2fe7b74844..30c95c3c88d 100644
--- a/libcxx/test/numerics/complex.number/cmplx.over/imag.pass.cpp
+++ b/libcxx/test/numerics/complex.number/cmplx.over/imag.pass.cpp
@@ -28,8 +28,8 @@ test(typename std::enable_if<std::is_integral<T>::value>::type* = 0)
#if _LIBCPP_STD_VER > 11
constexpr T val {x};
static_assert(std::imag(val) == 0, "");
- constexpr std::complex<T> t{val, val};
- static_assert(t.imag() == x, "" );
+ constexpr std::complex<T> t{val, val};
+ static_assert(t.imag() == x, "" );
#endif
}
@@ -42,8 +42,8 @@ test(typename std::enable_if<!std::is_integral<T>::value>::type* = 0)
#if _LIBCPP_STD_VER > 11
constexpr T val {x};
static_assert(std::imag(val) == 0, "");
- constexpr std::complex<T> t{val, val};
- static_assert(t.imag() == x, "" );
+ constexpr std::complex<T> t{val, val};
+ static_assert(t.imag() == x, "" );
#endif
}
diff --git a/libcxx/test/numerics/complex.number/cmplx.over/real.pass.cpp b/libcxx/test/numerics/complex.number/cmplx.over/real.pass.cpp
index 5824317afbd..a5a4a35b13c 100644
--- a/libcxx/test/numerics/complex.number/cmplx.over/real.pass.cpp
+++ b/libcxx/test/numerics/complex.number/cmplx.over/real.pass.cpp
@@ -28,8 +28,8 @@ test(typename std::enable_if<std::is_integral<T>::value>::type* = 0)
#if _LIBCPP_STD_VER > 11
constexpr T val {x};
static_assert(std::real(val) == val, "");
- constexpr std::complex<T> t{val, val};
- static_assert(t.real() == x, "" );
+ constexpr std::complex<T> t{val, val};
+ static_assert(t.real() == x, "" );
#endif
}
@@ -42,8 +42,8 @@ test(typename std::enable_if<!std::is_integral<T>::value>::type* = 0)
#if _LIBCPP_STD_VER > 11
constexpr T val {x};
static_assert(std::real(val) == val, "");
- constexpr std::complex<T> t{val, val};
- static_assert(t.real() == x, "" );
+ constexpr std::complex<T> t{val, val};
+ static_assert(t.real() == x, "" );
#endif
}
diff --git a/libcxx/test/numerics/complex.number/complex.ops/complex_not_equals_complex.pass.cpp b/libcxx/test/numerics/complex.number/complex.ops/complex_not_equals_complex.pass.cpp
index f5ff3fd1dac..ee138c1ecbc 100644
--- a/libcxx/test/numerics/complex.number/complex.ops/complex_not_equals_complex.pass.cpp
+++ b/libcxx/test/numerics/complex.number/complex.ops/complex_not_equals_complex.pass.cpp
@@ -50,8 +50,8 @@ test()
assert(!(lhs != rhs));
}
- test_constexpr<T> ();
- }
+ test_constexpr<T> ();
+ }
int main()
{
OpenPOWER on IntegriCloud