Merge pull request #1762 from assimp/issue_1758

closes https://github.com/assimp/assimp/issues/1758: fix compiler war…
pull/1763/head
Kim Kulling 2018-02-02 22:04:45 +01:00 committed by GitHub
commit 455ff4ab81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ void RemoveVCProcessTest::SetUp()
char check[sizeof(aiMaterial) == sizeof(aiMaterial) ? 10 : -1]; char check[sizeof(aiMaterial) == sizeof(aiMaterial) ? 10 : -1];
check[0] = 0; check[0] = 0;
// to remove compiler warning // to remove compiler warning
EXPECT_TRUE( check ); EXPECT_EQ( 0, check[0] );
} }
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------