Browse Source

ObjImporter: fix dead code.

Kim Kulling 8 years ago
parent
commit
4dc7940ac5
1 changed files with 0 additions and 1 deletions
  1. 0 1
      code/IOStreamBuffer.h

+ 0 - 1
code/IOStreamBuffer.h

@@ -231,7 +231,6 @@ template<class T>
 inline
 bool IOStreamBuffer<T>::getNextDataLine( std::vector<T> &buffer, T continuationToken ) {
     buffer.resize( m_cacheSize );
-    //std::fill( buffer.begin(), buffer.end(), ' ' );
     if ( m_cachePos == m_cacheSize || 0 == m_filePos ) {
         if ( !readNextBlock() ) {
             return false;