commit | fd838227411f3ce1fa348f1d334266231bbcc84d | [log] [tgz] |
---|---|---|
author | Eric Fiselier <eric@efcs.ca> | Fri Dec 23 23:37:52 2016 +0000 |
committer | Eric Fiselier <eric@efcs.ca> | Fri Dec 23 23:37:52 2016 +0000 |
tree | 204de9a3dad8b79d83bba224d8f6d4775169483f | |
parent | 16166a4d71fca27f454a0837465143700dd41e98 [diff] [blame] |
Fix unused parameters and variables llvm-svn: 290459
diff --git a/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.pass.cpp b/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.pass.cpp index cde9db4..af065b8 100644 --- a/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.pass.cpp +++ b/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.pass.cpp
@@ -44,7 +44,7 @@ template <typename Input1, typename Input2 = Input1> -constexpr bool do_test(int dummy = 0) +constexpr bool do_test(int = 0) { using S1 = typename std::make_signed<Input1>::type; using S2 = typename std::make_signed<Input2>::type;