fix for FreeBSD

pull/1193/head
Shin-ya Murakami 2017-03-01 16:30:03 +09:00
parent a38b2fb10f
commit ffc95162ec
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;
mCachedSize = (size_t) (fileStat.st_size);
#elif defined __GNUC__ || defined __APPLE__ || defined __MACH__
#elif defined __GNUC__ || defined __APPLE__ || defined __MACH__ || defined __FreeBSD__
struct stat fileStat;
int err = stat(mFilename.c_str(), &fileStat );
if (0 != err)