Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Aug 2021 20:10:06 GMT
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: d396c67f26b0 - main - googletest: Silence warnings about deprecated implicit copy constructors
Message-ID:  <202108262010.17QKA6b1028304@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=d396c67f26b079c2808002c07212d9df9818a11b

commit d396c67f26b079c2808002c07212d9df9818a11b
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2021-08-26 20:06:49 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2021-08-26 20:06:53 +0000

    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
---
 lib/googletest/Makefile.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/googletest/Makefile.inc b/lib/googletest/Makefile.inc
index 36f7228c079b..b77322df4ee2 100644
--- a/lib/googletest/Makefile.inc
+++ b/lib/googletest/Makefile.inc
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108262010.17QKA6b1028304>