Skip to content

Commit

Permalink
Add qualifier to avoid argument dependent lookup
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 527740306
Change-Id: I61308cc232c346d5ff8b0548d4c552a59633fffc
  • Loading branch information
thughes authored and copybara-github committed Apr 28, 2023
1 parent dea0484 commit 0bdaac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion googlemock/test/gmock-more-actions_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ TEST(SetArrayArgumentTest, SetsTheNthArrayWithIteratorArgument) {
Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end());

std::string s;
a.Perform(std::make_tuple(true, back_inserter(s)));
a.Perform(std::make_tuple(true, std::back_inserter(s)));
EXPECT_EQ(letters, s);
}

Expand Down

0 comments on commit 0bdaac5

Please sign in to comment.