Merge branch 'google3'

Change-Id: I9c915cdf568c4856a990d1dfc067b81a424b4eb2
This commit is contained in:
Alexey Polyudov
2020-09-15 00:32:19 -07:00
4 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ std::string Utils::WrapUpgradeServiceId(const std::string& service_id) {
std::string Utils::UnwrapUpgradeServiceId(
const std::string& upgrade_service_id) {
auto pos = upgrade_service_id.find(kUpgradeServiceIdPostfix);
auto pos = upgrade_service_id.find(std::string(kUpgradeServiceIdPostfix));
if (pos != std::string::npos) {
return std::string(upgrade_service_id, 0, pos);
}