aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/src/gmock-cardinalities.cc
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2017-05-15 17:07:03 -0400
committerNico Weber <thakis@chromium.org>2017-05-15 17:53:04 -0400
commit09fd5b3ebfaac10b78bda664ec7f57fac74ef214 (patch)
tree89a7afc9280b7e42b96391ea2b42075446503e0f /googlemock/src/gmock-cardinalities.cc
parent294f72bc773c92410aa3c5ecdd6cd4a757c3fbf4 (diff)
downloadgoogletest-09fd5b3ebfaac10b78bda664ec7f57fac74ef214.tar.gz
googletest-09fd5b3ebfaac10b78bda664ec7f57fac74ef214.tar.bz2
googletest-09fd5b3ebfaac10b78bda664ec7f57fac74ef214.zip
Use std::string and ::string explicitly in gtest and gmock code.
This merges a Google-internal change (117235625). Original CL description: This CL was created manually in about an hour with sed, a Python script to find all the places unqualified 'string' was mentioned, and some help from Emacs to add the "std::" qualifications, plus a few manual tweaks.
Diffstat (limited to 'googlemock/src/gmock-cardinalities.cc')
-rw-r--r--googlemock/src/gmock-cardinalities.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/src/gmock-cardinalities.cc b/googlemock/src/gmock-cardinalities.cc
index 50ec7286..335b966e 100644
--- a/googlemock/src/gmock-cardinalities.cc
+++ b/googlemock/src/gmock-cardinalities.cc
@@ -92,7 +92,7 @@ class BetweenCardinalityImpl : public CardinalityInterface {
};
// Formats "n times" in a human-friendly way.
-inline internal::string FormatTimes(int n) {
+inline std::string FormatTimes(int n) {
if (n == 1) {
return "once";
} else if (n == 2) {