• Tom Hughes's avatar
    Fix -Wshadow warnings · 356fc301
    Tom Hughes authored
    ../googlemock/test/gmock-actions_test.cc:687:36: warning: declaration of ‘v’ shadows a member of ‘testing::{anonymous}::ReturnTest_SupportsReferenceLikeReturnType_Test::TestBody()::Result’ [-Wshadow]
      687 |     Result(const std::vector<int>& v) : v(&v) {}  // NOLINT
          |            ~~~~~~~~~~~~~~~~~~~~~~~~^
    ../googlemock/test/gmock-actions_test.cc:686:29: note: shadowed declaration is here
      686 |     const std::vector<int>* v;
          |                             ^
    
    ../googlemock/test/gmock-actions_test.cc: In constructor ‘testing::{anonymous}::ReturnTest_PrefersConversionOperator_Test::TestBody()::Out::Out(int)’:
    ../googlemock/test/gmock-actions_test.cc:720:28: warning: declaration of ‘x’ shadows a member of ‘testing::{anonymous}::ReturnTest_PrefersConversionOperator_Test::TestBody()::Out’ [-Wshadow]
      720 |     explicit Out(const int x) : x(x) {}
          |                  ~~~~~~~~~~^
    ../googlemock/test/gmock-actions_test.cc:718:9: note: shadowed declaration is here
      718 |     int x;
          |         ^
    
    PiperOrigin-RevId: 501580618
    Change-Id: I584710fbbe440ec724f88746e51f3be5653c32d5
    356fc301
gmock-actions_test.cc 71 KB