Index: third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h |
diff --git a/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h b/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h |
index 3e930856bd84bd2f963ab0cf375f8ddeb1fb8cda..2e85a0bd3c3aab73255e672c774cb11a2efd4031 100644 |
--- a/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h |
+++ b/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h |
@@ -1,6 +1,6 @@ |
// Protocol Buffers - Google's data interchange format |
// Copyright 2008 Google Inc. All rights reserved. |
-// https://developers.google.com/protocol-buffers/ |
+// http://code.google.com/p/protobuf/ |
// |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
@@ -60,12 +60,6 @@ class EnumGenerator { |
// Header stuff. |
- // Generate header code to forward-declare the enum. This is for use when |
- // generating other .proto.h files. This code should be placed within the |
- // enum's package namespace, but NOT within any class, even for nested |
- // enums. |
- void GenerateForwardDeclaration(io::Printer* printer); |
- |
// Generate header code defining the enum. This code should be placed |
// within the enum's package namespace, but NOT within any class, even for |
// nested enums. |
@@ -95,8 +89,6 @@ class EnumGenerator { |
const EnumDescriptor* descriptor_; |
string classname_; |
Options options_; |
- // whether to generate the *_ARRAYSIZE constant. |
- bool generate_array_size_; |
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(EnumGenerator); |
}; |