File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/google/protobuf/compiler/cpp Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ using internal::TailCallTableInfo;
36
36
using internal::cpp::Utf8CheckMode;
37
37
38
38
std::vector<const FieldDescriptor*> GetOrderedFields (
39
- const Descriptor* descriptor, const Options& options ) {
39
+ const Descriptor* descriptor) {
40
40
std::vector<const FieldDescriptor*> ordered_fields;
41
41
for (auto field : FieldRange (descriptor)) {
42
42
ordered_fields.push_back (field);
@@ -62,7 +62,7 @@ ParseFunctionGenerator::ParseFunctionGenerator(
62
62
options_(options),
63
63
variables_(vars),
64
64
inlined_string_indices_(inlined_string_indices),
65
- ordered_fields_(GetOrderedFields(descriptor_, options_ )),
65
+ ordered_fields_(GetOrderedFields(descriptor_)),
66
66
num_hasbits_(max_has_bit_index),
67
67
index_in_file_messages_(index_in_file_messages) {
68
68
std::vector<TailCallTableInfo::FieldOptions> fields;
You can’t perform that action at this time.
0 commit comments