[linux] Fixed compilation on gcc 4.8.2 & libstdc++

This commit is contained in:
Alex Zolotarev 2015-07-02 23:41:53 +03:00
parent 21da223b3b
commit cfe83e8dc3

View file

@ -69,10 +69,11 @@ uint64_t FileManager::GetFileSize(const std::string & full_path_to_file) {
if (S_ISREG(st.st_mode)) {
return st.st_size;
}
throw std::ios_base::failure(full_path_to_file + " is a directory.",
std::error_code(EISDIR, std::generic_category()));
// TODO(AlexZ): gcc 4.8.2 & libstdc++ do not support std::error_code.
throw std::ios_base::failure(full_path_to_file + " is a directory."/*,
std::error_code(EISDIR, std::generic_category())*/);
}
throw std::ios_base::failure(std::string("Can't stat file ") + full_path_to_file,
std::error_code(errno, std::generic_category()));
throw std::ios_base::failure(std::string("Can't stat file ") + full_path_to_file/*,
std::error_code(errno, std::generic_category())*/);
}
} // namespace alohalytics