| commit | 346bd6a2082416d1e23cd4483c1a36db2ca6d8cf | [log] [tgz] |
|---|---|---|
| author | Benjamin Kramer <benny.kra@googlemail.com> | Sat Oct 14 15:52:38 2017 +0000 |
| committer | Benjamin Kramer <benny.kra@googlemail.com> | Sat Oct 14 15:52:38 2017 +0000 |
| tree | 6b992a30882ade7353151beb6f936f54a2127f88 | |
| parent | 9c05b2bc3b848f40731d0207170f6f2d08aba9f3 [diff] [blame] |
Placate unused variable warnings uncovered by improvements to clang's -Wunused-variable llvm-svn: 315809
diff --git a/libcxx/test/std/depr/depr.c.headers/tgmath_h.pass.cpp b/libcxx/test/std/depr/depr.c.headers/tgmath_h.pass.cpp index 965a8de..91727b6 100644 --- a/libcxx/test/std/depr/depr.c.headers/tgmath_h.pass.cpp +++ b/libcxx/test/std/depr/depr.c.headers/tgmath_h.pass.cpp
@@ -14,6 +14,7 @@ int main() { std::complex<double> cd; + (void)cd; double x = sin(1.0); (void)x; // to placate scan-build }