commit | ac97f7ce7c30a7d492c7ebf5f79da3b8915e983a | [log] [tgz] |
---|---|---|
author | Eric Fiselier <eric@efcs.ca> | Sun Oct 19 00:10:15 2014 +0000 |
committer | Eric Fiselier <eric@efcs.ca> | Sun Oct 19 00:10:15 2014 +0000 |
tree | 46fe8bc30319c9e62a9a2ee8f63dd2fe48d21410 | |
parent | afefe97e1c97dd4f04761b5412e34feced0d065a [diff] [blame] |
Fix unused variables in tests to placate scan-build. Patch from Steve MacKenzie. llvm-svn: 220154
diff --git a/libcxx/test/depr/depr.c.headers/tgmath_h.pass.cpp b/libcxx/test/depr/depr.c.headers/tgmath_h.pass.cpp index c4c9e85..a2ef814 100644 --- a/libcxx/test/depr/depr.c.headers/tgmath_h.pass.cpp +++ b/libcxx/test/depr/depr.c.headers/tgmath_h.pass.cpp
@@ -19,4 +19,5 @@ { std::complex<double> cd; double x = sin(1.0); + (void)x; // to placate scan-build }