fixed regression #2

pull/2658/head
escherstair 2019-09-18 08:31:33 +02:00 committed by GitHub
parent 2194577429
commit 1abf6d50fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -79,7 +79,10 @@ using namespace std;
ObjFileImporter::ObjFileImporter()
: m_Buffer()
, m_pRootObject( nullptr )
, m_strAbsPath( DefaultIOSystem().getOsSeparator() ) {}
, m_strAbsPath( "" ) {
DefaultIOSystem io;
m_strAbsPath = io.getOsSeparator();
}
// ------------------------------------------------------------------------------------------------
// Destructor.