]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
src/common/io_exerciser: add missing override statements to JsonStructures.h
authorJonBailey1993 <jonathan.bailey1@ibm.com>
Thu, 14 Nov 2024 16:51:47 +0000 (16:51 +0000)
committerJon Bailey <jonathan.bailey1@ibm.com>
Tue, 7 Jan 2025 11:41:29 +0000 (11:41 +0000)
Signed-off-by: Jon Bailey <jonathan.bailey1@ibm.com>
src/common/io_exerciser/JsonStructures.h

index 5a9f11e65ceacfe07b25ed915eb9698bde977b1c..995b9809146621f1f1b966821598be37b4219131 100644 (file)
@@ -72,8 +72,8 @@ class OSDMapReply : public JSONStructure {
   std::vector<int> acting;
   int acting_primary;
 
-  void decode_json(JSONObj* obj);
-  void dump() const;
+  void decode_json(JSONObj* obj) override;
+  void dump() const override;
 };
 
 class OSDPoolGetRequest : public JSONStructure {
@@ -100,8 +100,8 @@ class OSDPoolGetReply : public JSONStructure {
 
   std::string erasure_code_profile;
 
-  void decode_json(JSONObj* obj);
-  void dump() const;
+  void decode_json(JSONObj* obj) override;
+  void dump() const override;
 };
 
 class OSDECProfileGetRequest : public JSONStructure {
@@ -137,8 +137,8 @@ class OSDECProfileGetReply : public JSONStructure {
   std::string technique;
   std::string w;
 
-  void decode_json(JSONObj* obj);
-  void dump() const;
+  void decode_json(JSONObj* obj) override;
+  void dump() const override;
 };
 
 class OSDECProfileSetRequest : public JSONStructure {