From 9c1907481bade1d971a9ead7697ac627dd6605be Mon Sep 17 00:00:00 2001 From: JonBailey1993 Date: Thu, 14 Nov 2024 16:51:47 +0000 Subject: [PATCH] src/common/io_exerciser: add missing override statements to JsonStructures.h Signed-off-by: Jon Bailey --- src/common/io_exerciser/JsonStructures.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/common/io_exerciser/JsonStructures.h b/src/common/io_exerciser/JsonStructures.h index 5a9f11e65ceac..995b980914662 100644 --- a/src/common/io_exerciser/JsonStructures.h +++ b/src/common/io_exerciser/JsonStructures.h @@ -72,8 +72,8 @@ class OSDMapReply : public JSONStructure { std::vector 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 { -- 2.39.5