#8240 Fix test error due to path handling

This commit is contained in:
amai2012 2017-10-11 08:45:29 +02:00
parent 29a0dfc152
commit e4cdb51f7f
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ std::string Path::getAbsoluteFilePath(const std::string& filePath)
std::string Path::stripDirectoryPart(const std::string &file) std::string Path::stripDirectoryPart(const std::string &file)
{ {
#if defined(_WIN32) #if defined(_WIN32) && !defined(__MINGW32__)
const char native = '\\'; const char native = '\\';
#else #else
const char native = '/'; const char native = '/';