OpenGEXImporter: fix compiler warning.

pull/1034/head^2
Kim Kulling 2016-10-15 21:45:09 +02:00
parent 7681089abc
commit 46d78f57d5
1 changed files with 7 additions and 8 deletions

View File

@ -757,7 +757,6 @@ static void fillColor4( aiColor4D *col4, Value *vals ) {
ai_assert( nullptr != col4 );
ai_assert( nullptr != vals );
float r( 0.0f ), g( 0.0f ), b( 0.0f ), a ( 1.0f );
Value *next( vals );
col4->r = next->getFloat();
next = next->m_next;