diff options
Diffstat (limited to 'libcxx/test/std/numerics/complex.number/cmplx.over/conj.pass.cpp')
-rw-r--r-- | libcxx/test/std/numerics/complex.number/cmplx.over/conj.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/numerics/complex.number/cmplx.over/conj.pass.cpp b/libcxx/test/std/numerics/complex.number/cmplx.over/conj.pass.cpp index 80bd1571441..46bf69aade5 100644 --- a/libcxx/test/std/numerics/complex.number/cmplx.over/conj.pass.cpp +++ b/libcxx/test/std/numerics/complex.number/cmplx.over/conj.pass.cpp @@ -54,7 +54,7 @@ test() test<T>(10); } -int main() +int main(int, char**) { test<float>(); test<double>(); @@ -62,4 +62,6 @@ int main() test<int>(); test<unsigned>(); test<long long>(); + + return 0; } |