DefaultIOStream: add missing detection for apple-based OS.

pull/974/head
Kim Kulling 2016-08-12 18:14:26 +02:00
parent bdcff35d5d
commit 83b02ff41f
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ size_t DefaultIOStream::FileSize() const
if (0 != err)
return 0;
cachedSize = (size_t) (fileStat.st_size);
#elif defined __gnu_linux__
#elif defined __gnu_linux__ || defined __APPLE__ || defined __MACH__
struct stat fileStat;
int err = stat(mFilename.c_str(), &fileStat );
if (0 != err)