Skip to content

Commit 9c19074

Browse files
committed
src/common/io_exerciser: add missing override statements to JsonStructures.h
Signed-off-by: Jon Bailey <[email protected]>
1 parent 5811155 commit 9c19074

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/common/io_exerciser/JsonStructures.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ class OSDMapReply : public JSONStructure {
7272
std::vector<int> acting;
7373
int acting_primary;
7474

75-
void decode_json(JSONObj* obj);
76-
void dump() const;
75+
void decode_json(JSONObj* obj) override;
76+
void dump() const override;
7777
};
7878

7979
class OSDPoolGetRequest : public JSONStructure {
@@ -100,8 +100,8 @@ class OSDPoolGetReply : public JSONStructure {
100100

101101
std::string erasure_code_profile;
102102

103-
void decode_json(JSONObj* obj);
104-
void dump() const;
103+
void decode_json(JSONObj* obj) override;
104+
void dump() const override;
105105
};
106106

107107
class OSDECProfileGetRequest : public JSONStructure {
@@ -137,8 +137,8 @@ class OSDECProfileGetReply : public JSONStructure {
137137
std::string technique;
138138
std::string w;
139139

140-
void decode_json(JSONObj* obj);
141-
void dump() const;
140+
void decode_json(JSONObj* obj) override;
141+
void dump() const override;
142142
};
143143

144144
class OSDECProfileSetRequest : public JSONStructure {

0 commit comments

Comments
 (0)