diff options
Diffstat (limited to 'libcxx/test/std/numerics/complex.number/complex.ops/complex_equals_complex.pass.cpp')
-rw-r--r-- | libcxx/test/std/numerics/complex.number/complex.ops/complex_equals_complex.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/numerics/complex.number/complex.ops/complex_equals_complex.pass.cpp b/libcxx/test/std/numerics/complex.number/complex.ops/complex_equals_complex.pass.cpp index 88cee31584a..27621f165cf 100644 --- a/libcxx/test/std/numerics/complex.number/complex.ops/complex_equals_complex.pass.cpp +++ b/libcxx/test/std/numerics/complex.number/complex.ops/complex_equals_complex.pass.cpp @@ -52,10 +52,12 @@ test() test_constexpr<T> (); } -int main() +int main(int, char**) { test<float>(); test<double>(); test<long double>(); // test_constexpr<int> (); + + return 0; } |