Browse Source

Merge pull request #1123 from iamsergio/master

Avoid unneeded copy-ctor calls when calling getAiType
Kim Kulling 8 years ago
parent
commit
098b4dd2a6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      include/assimp/metadata.h

+ 2 - 2
include/assimp/metadata.h

@@ -98,8 +98,8 @@ inline aiMetadataType GetAiType( int32_t )    { return AI_INT32; }
 inline aiMetadataType GetAiType( uint64_t )   { return AI_UINT64; }
 inline aiMetadataType GetAiType( float )      { return AI_FLOAT; }
 inline aiMetadataType GetAiType( double )     { return AI_DOUBLE; }
-inline aiMetadataType GetAiType( aiString )   { return AI_AISTRING; }
-inline aiMetadataType GetAiType( aiVector3D ) { return AI_AIVECTOR3D; }
+inline aiMetadataType GetAiType( const aiString & )   { return AI_AISTRING; }
+inline aiMetadataType GetAiType( const aiVector3D & ) { return AI_AIVECTOR3D; }
 
 #endif // __cplusplus