1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00
This commit is contained in:
Daniel Leonov 2026-01-04 17:37:35 +01:00 committed by GitHub
commit 4e605364de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1187,3 +1187,13 @@ private:
};
} // namespace juce
/** @cond */
namespace std
{
template <> struct hash<juce::File>
{
size_t operator() (const juce::File& f) const noexcept { return (size_t) f.hashCode64(); }
};
}
/** @endcond */