Index: third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h |
diff --git a/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h b/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h |
index 787706629bd10fc72eb7811d9498f19dd0524d11..4463f2006056f22271e1bcab91cf0d133964fce2 100644 |
--- a/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h |
+++ b/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h |
@@ -1,6 +1,6 @@ |
// Protocol Buffers - Google's data interchange format |
// Copyright 2008 Google Inc. All rights reserved. |
-// http://code.google.com/p/protobuf/ |
+// https://developers.google.com/protocol-buffers/ |
// |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
@@ -41,12 +41,13 @@ namespace protobuf { |
namespace compiler { |
namespace cpp { |
-// Generator options: |
+// Generator options (see generator.cc for a description of each): |
struct Options { |
- Options() : safe_boundary_check(false) { |
+ Options() : safe_boundary_check(false), proto_h(false) { |
} |
string dllexport_decl; |
bool safe_boundary_check; |
+ bool proto_h; |
}; |
} // namespace cpp |