Forráskód Böngészése

closes https://github.com/assimp/assimp/issues/1758: fix compiler warning.

Kim Kulling 7 éve
szülő
commit
84957faa16
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      test/unit/utRemoveComponent.cpp

+ 1 - 1
test/unit/utRemoveComponent.cpp

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