We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 833abb1 commit f10fd17Copy full SHA for f10fd17
checker/type_checker_builder.cc
@@ -86,8 +86,11 @@ absl::StatusOr<TypeCheckerBuilder> CreateTypeCheckerBuilder(
86
absl::Nonnull<const google::protobuf::DescriptorPool*> descriptor_pool,
87
const CheckerOptions& options) {
88
ABSL_DCHECK(descriptor_pool != nullptr);
89
- return CreateTypeCheckerBuilder(std::shared_ptr<const google::protobuf::DescriptorPool>(
90
- descriptor_pool, [](absl::Nullable<const google::protobuf::DescriptorPool*>) {}));
+ return CreateTypeCheckerBuilder(
+ std::shared_ptr<const google::protobuf::DescriptorPool>(
91
+ descriptor_pool,
92
+ [](absl::Nullable<const google::protobuf::DescriptorPool*>) {}),
93
+ options);
94
}
95
96
absl::StatusOr<TypeCheckerBuilder> CreateTypeCheckerBuilder(
0 commit comments