Fixed error in GetProperty when accessed from external libraries using a different language (using swig for example)

This commit is contained in:
Léo Terziman
2014-03-20 15:32:12 +01:00
parent e9fa779a65
commit 358819c1a0
2 changed files with 4 additions and 4 deletions

View File

@@ -966,7 +966,7 @@ float Importer::GetPropertyFloat(const char* szName,
// ------------------------------------------------------------------------------------------------
// Get a configuration property
const std::string& Importer::GetPropertyString(const char* szName,
const std::string Importer::GetPropertyString(const char* szName,
const std::string& iErrorReturn /*= ""*/) const
{
return GetGenericProperty<std::string>(pimpl->mStringProperties,szName,iErrorReturn);
@@ -974,7 +974,7 @@ const std::string& Importer::GetPropertyString(const char* szName,
// ------------------------------------------------------------------------------------------------
// Get a configuration property
const aiMatrix4x4& Importer::GetPropertyMatrix(const char* szName,
const aiMatrix4x4 Importer::GetPropertyMatrix(const char* szName,
const aiMatrix4x4& iErrorReturn /*= aiMatrix4x4()*/) const
{
return GetGenericProperty<aiMatrix4x4>(pimpl->mMatrixProperties,szName,iErrorReturn);