Fix unused warnings release (#3677)
* Release build fix for Windows * Release build fix for Android * Release build fix for Windows * Release build fix for Android * Release build fix for Linux * Release build fix for Mac * Release build fix for iOS Signed-off-by: Steve Pham <spham@amazon.com>
This commit is contained in:
@@ -257,8 +257,8 @@ static void CmdCrashTest(IConsoleCmdArgs* pArgs)
|
||||
{
|
||||
float a = 1.0f;
|
||||
memset(&a, 0, sizeof(a));
|
||||
float* b = &a;
|
||||
float c = 3;
|
||||
[[maybe_unused]] float* b = &a;
|
||||
[[maybe_unused]] float c = 3;
|
||||
CryLog("%f", (c / *b));
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user