Mark unused variables as unused

Signed-off-by: Chris Burel <burelc@amazon.com>
This commit is contained in:
Chris Burel
2022-02-10 13:08:12 -08:00
parent bdac374775
commit d4eb310950
2 changed files with 2 additions and 2 deletions
@@ -443,7 +443,7 @@ namespace UnitTest
: m_data(data) { /* expensive operations */ }
private:
int m_data;
[[maybe_unused]] int m_data;
};
//////////////////////////////////////////////////////////////////////////
@@ -83,7 +83,7 @@ namespace Blast
static AZ::Vector3 TransformToLocal(BlastActor& actor, const AZ::Vector3& globalPosition);
BlastMaterial m_blastMaterial;
ActorTracker& m_actorTracker;
[[maybe_unused]] ActorTracker& m_actorTracker;
};
template<class T, class... Args>