gmock.cc (googletest-release-1.10.0) | : | gmock.cc (googletest-release-1.11.0) | ||
---|---|---|---|---|
skipping to change at line 126 | skipping to change at line 126 | |||
// Aborts if the parsing failed. | // Aborts if the parsing failed. | |||
if (value_str == nullptr) return false; | if (value_str == nullptr) return false; | |||
// Sets *value to the value of the flag. | // Sets *value to the value of the flag. | |||
*value = value_str; | *value = value_str; | |||
return true; | return true; | |||
} | } | |||
static bool ParseGoogleMockIntFlag(const char* str, const char* flag, | static bool ParseGoogleMockIntFlag(const char* str, const char* flag, | |||
int* value) { | int32_t* value) { | |||
// Gets the value of the flag as a string. | // Gets the value of the flag as a string. | |||
const char* const value_str = ParseGoogleMockFlagValue(str, flag, true); | const char* const value_str = ParseGoogleMockFlagValue(str, flag, true); | |||
// Aborts if the parsing failed. | // Aborts if the parsing failed. | |||
if (value_str == nullptr) return false; | if (value_str == nullptr) return false; | |||
// Sets *value to the value of the flag. | // Sets *value to the value of the flag. | |||
return ParseInt32(Message() << "The value of flag --" << flag, | return ParseInt32(Message() << "The value of flag --" << flag, | |||
value_str, value); | value_str, value); | |||
} | } | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |