Phi
hash.hpp
1 #ifndef INCG_PHI_FORWARD_STD_HASH_HPP
2 #define INCG_PHI_FORWARD_STD_HASH_HPP
3 
4 #include "phi/phi_config.hpp"
5 
6 #if PHI_HAS_EXTENSION_PRAGMA_ONCE()
7 # pragma once
8 #endif
9 
10 #include "phi/compiler_support/standard_library.hpp"
11 
12 DETAIL_PHI_BEGIN_STD_NAMESPACE()
13 
14 template <typename KeyT>
15 struct hash;
16 
17 DETAIL_PHI_END_STD_NAMESPACE()
18 
19 #endif // INCG_PHI_FORWARD_STD_HASH_HPP
Definition: hash.hpp:15