Skip to content

Commit dc54a9c

Browse files
committed
Make clang a little happier
Signed-off-by: Tom Flynn <tom.flynn@gmail.com> Change-Id: Iffb8a1e00a03de580f1527480652612ecdb3285b
1 parent 43fb625 commit dc54a9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

agent-ovs/ovs/include/ContractStatsManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class ContractStatsManager : public PolicyStatsManager {
7777
/*
7878
* Derived class API to delete indexth counter object
7979
*/
80-
void clearCounterObject(const std::string& key,uint8_t index) override;
80+
virtual void clearCounterObject(const std::string& key,uint8_t index) override;
8181

8282
/** Interface: ObjectListener */
8383
void objectUpdated(opflex::modb::class_id_t class_id,

agent-ovs/ovs/include/SecGrpStatsManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class SecGrpStatsManager : public PolicyStatsManager {
6666
* @param key the key of the object to remove
6767
* @param index the index of the counter to remove
6868
*/
69-
void clearCounterObject(const std::string& key,uint8_t index);
69+
virtual void clearCounterObject(const std::string& key,uint8_t index);
7070

7171
/** Interface: ObjectListener */
7272
void objectUpdated(opflex::modb::class_id_t class_id,

0 commit comments

Comments
 (0)