More fixes for import.
diff --git a/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc b/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc
index ef81f57..9db79b8 100644
--- a/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc
+++ b/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc
@@ -659,7 +659,7 @@
// Some compilers report reaching end of function even though all cases of
// the enum are handed in the switch.
GOOGLE_LOG(FATAL) << "Can't get here.";
- return NULL;
+ return string();
}
ObjectiveCType GetObjectiveCType(FieldDescriptor::Type field_type) {
@@ -1052,13 +1052,13 @@
line.ToString() + "'.";
return false;
}
- StringPiece package(line, 0, offset);
- StringPiece prefix(line, offset + 1, line.length() - offset - 1);
+ StringPiece package = line.substr(0, offset);
+ StringPiece prefix = line.substr(offset + 1);
TrimWhitespace(&package);
TrimWhitespace(&prefix);
// Don't really worry about error checking the package/prefix for
// being valid. Assume the file is validated when it is created/edited.
- (*prefix_map_)[package.ToString()] = prefix.ToString();
+ (*prefix_map_)[string(package)] = string(prefix);
return true;
}
@@ -1474,7 +1474,7 @@
bool Parser::ParseChunk(StringPiece chunk) {
if (!leftover_.empty()) {
- chunk.AppendToString(&leftover_);
+ leftover_ += chunk;
p_ = StringPiece(leftover_);
} else {
p_ = chunk;
@@ -1483,7 +1483,7 @@
if (p_.empty()) {
leftover_.clear();
} else {
- leftover_ = p_.ToString();
+ leftover_ = string(p_);
}
return result;
}
@@ -1506,7 +1506,7 @@
while (ReadLine(&p_, &line)) {
++line_;
RemoveComment(&line);
- StringPieceTrimWhitespace(&line);
+ TrimWhitespace(&line);
if (line.size() == 0) {
continue; // Blank line.
}
@@ -1698,7 +1698,7 @@
}
StringPiece framework_name(line, 0, offset);
StringPiece proto_file_list(line, offset + 1, line.length() - offset - 1);
- StringPieceTrimWhitespace(&framework_name);
+ TrimWhitespace(&framework_name);
int start = 0;
while (start < proto_file_list.length()) {
@@ -1708,24 +1708,24 @@
}
StringPiece proto_file(proto_file_list, start, offset - start);
- StringPieceTrimWhitespace(&proto_file);
+ TrimWhitespace(&proto_file);
if (proto_file.size() != 0) {
std::map<string, string>::iterator existing_entry =
- map_->find(proto_file.ToString());
+ map_->find(string(proto_file));
if (existing_entry != map_->end()) {
std::cerr << "warning: duplicate proto file reference, replacing framework entry for '"
- << proto_file.ToString() << "' with '" << framework_name.ToString()
+ << string(proto_file) << "' with '" << string(framework_name)
<< "' (was '" << existing_entry->second << "')." << std::endl;
std::cerr.flush();
}
if (proto_file.find(' ') != StringPiece::npos) {
std::cerr << "note: framework mapping file had a proto file with a space in, hopefully that isn't a missing comma: '"
- << proto_file.ToString() << "'" << std::endl;
+ << string(proto_file) << "'" << std::endl;
std::cerr.flush();
}
- (*map_)[proto_file.ToString()] = framework_name.ToString();
+ (*map_)[string(proto_file)] = string(framework_name);
}
start = offset + 1;