remove useless fs hash block

ndk r27 implements this, so it won't build
This commit is contained in:
Chloe 2024-07-18 18:45:20 -07:00 committed by GitHub
parent 2edfb71bac
commit 2b35e0e833
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,16 +14,6 @@
#include <clocale>
#include <type_traits>
// only windows seems to properly implement std::hash on std::filesystem::path
#ifdef GEODE_IS_ANDROID
template <>
struct std::hash<std::filesystem::path> {
std::size_t operator()(std::filesystem::path const& path) const noexcept {
return std::filesystem::hash_value(path);
}
};
#endif
namespace geode {
using ByteVector = std::vector<uint8_t>;