diff options
Diffstat (limited to 'libcxx/test/std/numerics/c.math/ctgmath.pass.cpp')
-rw-r--r-- | libcxx/test/std/numerics/c.math/ctgmath.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/numerics/c.math/ctgmath.pass.cpp b/libcxx/test/std/numerics/c.math/ctgmath.pass.cpp index c2ea8e8755d..4cba6031aaf 100644 --- a/libcxx/test/std/numerics/c.math/ctgmath.pass.cpp +++ b/libcxx/test/std/numerics/c.math/ctgmath.pass.cpp @@ -10,10 +10,12 @@ #include <ctgmath> -int main() +int main(int, char**) { std::complex<double> cd; (void)cd; double x = std::sin(0); ((void)x); // Prevent unused warning + + return 0; } |