| OLD | NEW |
| (Empty) |
| 1 diff --git a/.gitignore b/.gitignore | |
| 2 index 4f42646..8b42cac 100644 | |
| 3 --- a/.gitignore | |
| 4 +++ b/.gitignore | |
| 5 @@ -47,7 +47,6 @@ any_test.pb.* | |
| 6 map*unittest.pb.* | |
| 7 unittest*.pb.* | |
| 8 cpp_test*.pb.* | |
| 9 -src/google/protobuf/compiler/js/well_known_types_embed.cc | |
| 10 src/google/protobuf/util/**/*.pb.cc | |
| 11 src/google/protobuf/util/**/*.pb.h | |
| 12 | |
| 13 diff --git a/src/google/protobuf/compiler/js/embed.cc b/src/google/protobuf/comp
iler/js/embed.cc | |
| 14 index d04fea2..cfa84a9 100644 | |
| 15 --- a/src/google/protobuf/compiler/js/embed.cc | |
| 16 +++ b/src/google/protobuf/compiler/js/embed.cc | |
| 17 @@ -98,7 +98,7 @@ static void AddFile(const char* name, std::basic_ostream<char>
* out) { | |
| 18 | |
| 19 int main(int argc, char *argv[]) { | |
| 20 std::cout << "#include " | |
| 21 - "\"google/protobuf/compiler/js/well_known_types_embed.h\"\n"; | |
| 22 + "<google/protobuf/compiler/js/well_known_types_embed.h>\n"; | |
| 23 std::cout << "struct FileToc well_known_types_js[] = {\n"; | |
| 24 | |
| 25 for (int i = 1; i < argc; i++) { | |
| OLD | NEW |