Cleaned up formatting in DefaultIOSystem.cpp
parent
0685e415ad
commit
a8822a2b29
|
@ -87,7 +87,7 @@ bool DefaultIOSystem::Exists( const char* pFile) const
|
|||
{
|
||||
#if defined(_WIN32) && !defined(WindowsStore)
|
||||
struct __stat64 filestat;
|
||||
if (0 != _wstat64(Utf8ToWide(pFile).c_str(), &filestat)) {
|
||||
if (_wstat64(Utf8ToWide(pFile).c_str(), &filestat) != 0) {
|
||||
return false;
|
||||
}
|
||||
#else
|
||||
|
@ -104,15 +104,15 @@ bool DefaultIOSystem::Exists( const char* pFile) const
|
|||
// Open a new file with a given path.
|
||||
IOStream* DefaultIOSystem::Open(const char* strFile, const char* strMode)
|
||||
{
|
||||
ai_assert(NULL != strFile);
|
||||
ai_assert(NULL != strMode);
|
||||
ai_assert(strFile != nullptr);
|
||||
ai_assert(strMode != nullptr);
|
||||
FILE* file;
|
||||
#if defined(_WIN32) && !defined(WindowsStore)
|
||||
file = ::_wfopen(Utf8ToWide(strFile).c_str(), Utf8ToWide(strMode).c_str());
|
||||
#else
|
||||
file = ::fopen(strFile, strMode);
|
||||
#endif
|
||||
if (nullptr == file)
|
||||
if (!file)
|
||||
return nullptr;
|
||||
|
||||
return new DefaultIOStream(file, strFile);
|
||||
|
@ -209,7 +209,7 @@ std::string DefaultIOSystem::completeBaseName( const std::string &path )
|
|||
{
|
||||
std::string ret = fileName(path);
|
||||
std::size_t pos = ret.find_last_of('.');
|
||||
if(pos != ret.npos) ret = ret.substr(0, pos);
|
||||
if (pos != std::string::npos) ret = ret.substr(0, pos);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue