Merge pull request #5296 from janisozaur/patch-2

Add missing include guard to zip_writer.h
This commit is contained in:
Adam Cozzette 2018-11-12 14:05:18 -08:00 committed by GitHub
commit ebfc0432c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,6 +60,9 @@
// Author: kenton@google.com (Kenton Varda)
#ifndef GOOGLE_PROTOBUF_COMPILER_ZIP_WRITER_H__
#define GOOGLE_PROTOBUF_COMPILER_ZIP_WRITER_H__
#include <vector>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/io/zero_copy_stream.h>
@ -91,3 +94,5 @@ class ZipWriter {
} // namespace compiler
} // namespace protobuf
} // namespace google
#endif // GOOGLE_PROTOBUF_COMPILER_ZIP_WRITER_H__