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