From c820efcc04bdc2bd673f112195bec11e70f0cc38 Mon Sep 17 00:00:00 2001 From: kosak Date: Mon, 27 Jul 2015 22:08:34 +0000 Subject: [PATCH] Templatize ParseeGoogleMockStringFlag on String type. --- src/gmock.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gmock.cc b/src/gmock.cc index 1c06985d..eac3d842 100644 --- a/src/gmock.cc +++ b/src/gmock.cc @@ -106,8 +106,9 @@ static bool ParseGoogleMockBoolFlag(const char* str, const char* flag, // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. +template static bool ParseGoogleMockStringFlag(const char* str, const char* flag, - std::string* value) { + String* value) { // Gets the value of the flag as a string. const char* const value_str = ParseGoogleMockFlagValue(str, flag, false);