mirror of
https://github.com/google/googletest.git
synced 2025-04-08 06:43:10 +00:00
Silence a Clang warning about an unused variable.
This commit is contained in:
parent
c476707e82
commit
cdc0aae155
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue