----------------------------------------------------------------------------
| 211 | |
| 212 | // ---------------------------------------------------------------------------- |
| 213 | inline bool IOSystem::ComparePaths (const std::string& one, |
| 214 | const std::string& second) const |
| 215 | { |
| 216 | // NOTE: |
| 217 | // For compatibility, interface was changed to const char* to |
| 218 | // avoid crashes between binary incompatible STL versions |
| 219 | return ComparePaths(one.c_str(),second.c_str()); |
| 220 | } |
| 221 | |
| 222 | // ---------------------------------------------------------------------------- |
| 223 | } //!ns Assimp |