From ed2fe122f8dc9aca844d724986d1d5cf5b65ea4e Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Tue, 12 Feb 2019 16:35:38 -0800 Subject: Fix -Wunused-private-field issues with clang Provide dummy accessors for private values that are set in initializers, but not actually used. Signed-off-by: Enji Cooper --- googlemock/test/gmock-matchers_test.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'googlemock/test') diff --git a/googlemock/test/gmock-matchers_test.cc b/googlemock/test/gmock-matchers_test.cc index c2f1d0ad..cdca2300 100644 --- a/googlemock/test/gmock-matchers_test.cc +++ b/googlemock/test/gmock-matchers_test.cc @@ -982,6 +982,8 @@ class Unprintable { Unprintable() : c_('a') {} bool operator==(const Unprintable& /* rhs */) const { return true; } + // -Wunused-private-field: dummy accessor for `c_`. + char dummy_c() { return c_; } private: char c_; }; -- cgit v1.2.3