googletest: Silence warnings about deprecated implicit copy constructors
Our copy of googletest is rather stale, and causes a number of -Werror warnings about implicit copy constructor definitions being deprecated, because several classes have user-declared copy assignment operators. Silence the warnings until we either upgrade or remove googletest. MFC after: 3 days
This commit is contained in:
parent
f643997a17
commit
d396c67f26
@ -10,3 +10,6 @@ CXXFLAGS+= ${GTESTS_FLAGS}
|
||||
|
||||
# Silence warnings about usage of deprecated std::auto_ptr
|
||||
CXXWARNFLAGS+= -Wno-deprecated-declarations
|
||||
|
||||
# Silence warnings about usage of deprecated implicit copy constructors
|
||||
CXXWARNFLAGS+= -Wno-deprecated-copy
|
||||
|
Loading…
x
Reference in New Issue
Block a user