aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/util/internal/error_listener.h
diff options
context:
space:
mode:
authorKhuzema Pithewan <khuzemap@gmail.com>2018-05-21 15:16:34 -0700
committerKhuzema Pithewan <khuzemap@gmail.com>2018-06-19 11:03:01 -0700
commit6f88e12f9dee4a658913b475e7680952c6ff3cac (patch)
treefb9690e6928deb21cb6df6558d4405a61aede251 /src/google/protobuf/util/internal/error_listener.h
parent2213c1c1f6bae29513729b7285462b24df20d687 (diff)
downloadprotobuf-6f88e12f9dee4a658913b475e7680952c6ff3cac.tar.gz
protobuf-6f88e12f9dee4a658913b475e7680952c6ff3cac.tar.bz2
protobuf-6f88e12f9dee4a658913b475e7680952c6ff3cac.zip
Add "override" for overridden virtual functions
Add "override" for overridden virtual functions. Please refer following issue for discussion on this. https://github.com/google/protobuf/issues/67
Diffstat (limited to 'src/google/protobuf/util/internal/error_listener.h')
-rw-r--r--src/google/protobuf/util/internal/error_listener.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/google/protobuf/util/internal/error_listener.h b/src/google/protobuf/util/internal/error_listener.h
index a19bd3f7..e3baa224 100644
--- a/src/google/protobuf/util/internal/error_listener.h
+++ b/src/google/protobuf/util/internal/error_listener.h
@@ -76,16 +76,16 @@ class LIBPROTOBUF_EXPORT ErrorListener {
class LIBPROTOBUF_EXPORT NoopErrorListener : public ErrorListener {
public:
NoopErrorListener() {}
- virtual ~NoopErrorListener() {}
+ virtual ~NoopErrorListener() override {}
virtual void InvalidName(const LocationTrackerInterface& loc,
- StringPiece invalid_name, StringPiece message) {}
+ StringPiece invalid_name, StringPiece message) override {}
- virtual void InvalidValue(const LocationTrackerInterface& loc,
- StringPiece type_name, StringPiece value) {}
+ virtual void InvalidValue(const LocationTrackerInterface &loc, StringPiece type_name,
+ StringPiece value) override {}
- virtual void MissingField(const LocationTrackerInterface& loc,
- StringPiece missing_name) {}
+ virtual void MissingField(const LocationTrackerInterface &loc,
+ StringPiece missing_name) override {}
private:
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(NoopErrorListener);