Silence a Clang warning about an unused variable.

This commit is contained in:
chandlerc 2010-05-09 08:16:50 +00:00
parent c476707e82
commit cdc0aae155

View File

@ -1969,7 +1969,7 @@ struct StaticAssertTypeEqHelper<T, T> {};
// to cause a compiler error.
template <typename T1, typename T2>
bool StaticAssertTypeEq() {
internal::StaticAssertTypeEqHelper<T1, T2>();
(void)internal::StaticAssertTypeEqHelper<T1, T2>();
return true;
}