PLYLoader: fix review comments.

This commit is contained in:
Kim Kulling
2016-03-25 00:09:56 +01:00
parent 42d29b1bfe
commit 1592a18210

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 );