Skip to content

Commit 97a5ac5

Browse files
committed
build: Resolve compiler warnings
Signed-off-by: Ryan Northey <[email protected]>
1 parent 11d825f commit 97a5ac5

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

proto_processing_lib/factory_helper.h

-7
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@
2626

2727
namespace proto_processing_lib {
2828

29-
// Factory Method to create UnknownFieldChecker.
30-
static const proto_processing_lib::proto_scrubber::FieldCheckerInterface*
31-
FactoryCreateUnknownFieldChecker() {
32-
return proto_processing_lib::proto_scrubber::UnknownFieldChecker::
33-
GetDefault();
34-
}
35-
3629
// Factory Method to create UnknownFieldChecker.
3730
static std::unique_ptr<proto_processing_lib::FieldMaskTreeInterface>
3831
FactoryCreateFieldMaskTree(

proto_processing_lib/proto_scrubber/field_mask_tree.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class FieldMaskTree : public FieldMaskTreeInterface {
7272
// Returns OK if all "paths" are legal, otherwise returns INVALID_ARGUMENT and
7373
// the tree will be left in a broken state. Calling this method again on a
7474
// broken FieldMaskTree will yield an error of FAILED_PRECONDITION.
75-
absl::Status AddOrIntersectFieldPaths(const std::vector<std::string>& paths);
75+
absl::Status AddOrIntersectFieldPaths(const std::vector<std::string>& paths) override;
7676

7777
// Checks if a field is on this tree. Returns "kInclude" if the field is on a
7878
// leaf node of the tree, "kPartial" if it's on a non-leaf node and "kExclude"
@@ -96,10 +96,10 @@ class FieldMaskTree : public FieldMaskTreeInterface {
9696
}
9797

9898
// Returns the status of the tree.
99-
absl::Status status() { return status_; }
99+
absl::Status status() override { return status_; }
100100

101101
// Returns root node of the tree.
102-
const FieldMaskNode* root() const { return root_.get(); }
102+
const FieldMaskNode* root() const override { return root_.get(); }
103103

104104
private:
105105
// The root node of the FieldMask tree.

0 commit comments

Comments
 (0)