aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/compiler/zip_writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/google/protobuf/compiler/zip_writer.h')
-rw-r--r--src/google/protobuf/compiler/zip_writer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google/protobuf/compiler/zip_writer.h b/src/google/protobuf/compiler/zip_writer.h
index 03db4d57..a99bb78c 100644
--- a/src/google/protobuf/compiler/zip_writer.h
+++ b/src/google/protobuf/compiler/zip_writer.h
@@ -73,12 +73,12 @@ class ZipWriter {
ZipWriter(io::ZeroCopyOutputStream* raw_output);
~ZipWriter();
- bool Write(const string& filename, const string& contents);
+ bool Write(const std::string& filename, const std::string& contents);
bool WriteDirectory();
private:
struct FileInfo {
- string name;
+ std::string name;
uint32 offset;
uint32 size;
uint32 crc32;