more fixes

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-08-20 10:09:44 -07:00
parent cf6c7c4d8d
commit a35464ca08
43 changed files with 28 additions and 134 deletions
+1 -1
View File
@@ -517,7 +517,7 @@ namespace AZ
bool result = GetTypeId() == id;
using dummy = bool[];
dummy{ true, (IsTypeOfInternal<TArgs>(result, id), true)... };
[[maybe_unused]] dummy d = { true, (IsTypeOfInternal<TArgs>(result, id), true)... };
return result;
}