Merge pull request #3618 from aws-lumberyard-dev/carlitosan/development

add missing [[maybe_unused]] tags to Store() calls of serializers
This commit is contained in:
carlitosan
2021-08-26 16:22:29 -07:00
committed by GitHub
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;