From c0e31cfaadecaaeecd5be6c430706b9507c519c3 Mon Sep 17 00:00:00 2001 From: penmetsaa Date: Fri, 15 May 2020 19:16:25 +0530 Subject: [PATCH] Refer using std::string instead of global 'string' (#2466) * Refer using string::std instead of global 'string' i.e to increase portablility, readability and also consistent * Using 'using' to avoid mentioning namespace everytime --- cpp/src/phonenumbers/utf/unicodetext.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/src/phonenumbers/utf/unicodetext.cc b/cpp/src/phonenumbers/utf/unicodetext.cc index 11f68f762..1cde4baa6 100644 --- a/cpp/src/phonenumbers/utf/unicodetext.cc +++ b/cpp/src/phonenumbers/utf/unicodetext.cc @@ -27,6 +27,7 @@ namespace i18n { namespace phonenumbers { +using std::string; using std::stringstream; using std::max; using std::hex;