#pragma once #include //------------------------------------------------------------------------------ namespace std { template<> struct hash { std::size_t operator()(const stdfs::path & _file) const noexcept { return stdfs::hash_value( _file ); } }; } //------------------------------------------------------------------------------