Commit cdc0aae1 authored by chandlerc's avatar chandlerc
Browse files

Silence a Clang warning about an unused variable.

parent c476707e
...@@ -1969,7 +1969,7 @@ struct StaticAssertTypeEqHelper<T, T> {}; ...@@ -1969,7 +1969,7 @@ struct StaticAssertTypeEqHelper<T, T> {};
// to cause a compiler error. // to cause a compiler error.
template <typename T1, typename T2> template <typename T1, typename T2>
bool StaticAssertTypeEq() { bool StaticAssertTypeEq() {
internal::StaticAssertTypeEqHelper<T1, T2>(); (void)internal::StaticAssertTypeEqHelper<T1, T2>();
return true; return true;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment