Explorar el Código

DefaultIOStream: add missing detection for apple-based OS.

Kim Kulling hace 9 años
padre
commit
83b02ff41f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      code/DefaultIOStream.cpp

+ 1 - 1
code/DefaultIOStream.cpp

@@ -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)