mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-21 10:38:27 -05:00
remove useless fs hash block
ndk r27 implements this, so it won't build
This commit is contained in:
parent
2edfb71bac
commit
2b35e0e833
1 changed files with 0 additions and 10 deletions
|
@ -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>;
|
||||
|
||||
|
|
Loading…
Reference in a new issue