Skip to content

Commit f415285

Browse files
committed
Scope string usage with the namespace.
1 parent 8275756 commit f415285

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/google/protobuf/compiler/objectivec/objectivec_helpers.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1745,7 +1745,7 @@ bool ImportWriter::ProtoFrameworkCollector::ConsumeLine(
17451745
TrimWhitespace(&proto_file);
17461746
if (!proto_file.empty()) {
17471747
std::map<std::string, std::string>::iterator existing_entry =
1748-
map_->find(string(proto_file));
1748+
map_->find(std::string(proto_file));
17491749
if (existing_entry != map_->end()) {
17501750
std::cerr << "warning: duplicate proto file reference, replacing "
17511751
"framework entry for '"

0 commit comments

Comments
 (0)