PLYLoader: fix review comments.

pull/837/head
Kim Kulling 2016-03-25 00:09:56 +01:00
parent 42d29b1bfe
commit 1592a18210
1 changed files with 3 additions and 1 deletions

View File

@ -123,7 +123,9 @@ const aiImporterDesc* PLYImporter::GetInfo () const
}
// ------------------------------------------------------------------------------------------------
static bool isBigEndian( char* szMe ) {
static bool isBigEndian( const char* szMe ) {
ai_assert( NULL != szMe );
// binary_little_endian
// binary_big_endian
bool isBigEndian( false );