diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-19 13:57:18 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-19 13:57:18 +0200 |
commit | 0047a9fdfc83c8fbd40fd235514f46cebc61df95 (patch) | |
tree | 199667a360bd1b2fedfda4d17819569d10c990e0 /butl | |
parent | 7b3c9d8c1c10fbd92f121edbdbc85af759101289 (diff) |
Add missing typedef in std::hash<path>
Diffstat (limited to 'butl')
-rw-r--r-- | butl/path | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1104,6 +1104,8 @@ namespace std template <typename C, typename K> struct hash<butl::basic_path<C, K>>: hash<basic_string<C>> { + using argument_type = butl::basic_path<C, K>; + size_t operator() (const butl::basic_path<C, K>& p) const noexcept { |