diff options
Diffstat (limited to 'libcxx/test/std/numerics/complex.number/complex.ops/complex_times_scalar.pass.cpp')
-rw-r--r-- | libcxx/test/std/numerics/complex.number/complex.ops/complex_times_scalar.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/numerics/complex.number/complex.ops/complex_times_scalar.pass.cpp b/libcxx/test/std/numerics/complex.number/complex.ops/complex_times_scalar.pass.cpp index 94afd4b863f..9fface6b75f 100644 --- a/libcxx/test/std/numerics/complex.number/complex.ops/complex_times_scalar.pass.cpp +++ b/libcxx/test/std/numerics/complex.number/complex.ops/complex_times_scalar.pass.cpp @@ -32,9 +32,11 @@ test() test(lhs, rhs, x); } -int main() +int main(int, char**) { test<float>(); test<double>(); test<long double>(); + + return 0; } |