DefaultIOSystem close assimp/assimp/issues/108 : use correct macro to

detect vs-compiler.
This commit is contained in:
Kim Kulling
2015-09-21 20:43:58 +02:00
parent 6b1cac5743
commit 34ee4c4b9a
2 changed files with 13 additions and 10 deletions

View File

@@ -80,17 +80,17 @@ public:
/** @brief get the file name of a full filepath
* example: /tmp/archive.tar.gz -> archive.tar.gz
*/
static std::string fileName(std::string path);
static std::string fileName( const std::string &path );
/** @brief get the complete base name of a full filepath
* example: /tmp/archive.tar.gz -> archive.tar
*/
static std::string completeBaseName(std::string path);
static std::string completeBaseName( const std::string &path);
/** @brief get the path of a full filepath
* example: /tmp/archive.tar.gz -> /tmp/
*/
static std::string absolutePath(std::string path);
static std::string absolutePath( const std::string &path);
};
} //!ns Assimp