diff options
Diffstat (limited to 'libcxx/test/std/numerics/complex.number/complex.value.ops/polar.pass.cpp')
-rw-r--r-- | libcxx/test/std/numerics/complex.number/complex.value.ops/polar.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/numerics/complex.number/complex.value.ops/polar.pass.cpp b/libcxx/test/std/numerics/complex.number/complex.value.ops/polar.pass.cpp index 3f7c497c27b..b7450abed68 100644 --- a/libcxx/test/std/numerics/complex.number/complex.value.ops/polar.pass.cpp +++ b/libcxx/test/std/numerics/complex.number/complex.value.ops/polar.pass.cpp @@ -102,10 +102,12 @@ void test_edges() } } -int main() +int main(int, char**) { test<float>(); test<double>(); test<long double>(); test_edges(); + + return 0; } |