add missing [[maybe_unused]] tags to Store() calls of serializers

Signed-off-by: chcurran <82187351+carlitosan@users.noreply.github.com>
This commit is contained in:
chcurran
2021-08-26 13:14:21 -07:00
parent 6bd5cd7bde
commit 34939dcb10
2 changed files with 4 additions and 2 deletions
@@ -107,7 +107,8 @@ namespace AZ
( rapidjson::Value& outputValue
, const void* inputValue
, const void* defaultValue
, const Uuid& valueTypeId, JsonSerializerContext& context) override
, [[maybe_unused]] const Uuid& valueTypeId
, JsonSerializerContext& context) override
{
namespace JSR = JsonSerializationResult;
@@ -89,7 +89,8 @@ namespace AZ
( rapidjson::Value& outputValue
, const void* inputValue
, const void* defaultValue
, const Uuid& valueTypeId, JsonSerializerContext& context) override
, [[maybe_unused]] const Uuid& valueTypeId
, JsonSerializerContext& context) override
{
namespace JSR = JsonSerializationResult;