mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-10-05 13:00:00 +00:00
fix math::log implementation
support std::hash
This commit is contained in:
parent
9140b68379
commit
66da9f4fea
20 changed files with 288 additions and 5 deletions
|
@ -18,4 +18,14 @@ namespace sprout {
|
|||
}
|
||||
} // namespace sprout
|
||||
|
||||
namespace std {
|
||||
//
|
||||
// hash
|
||||
//
|
||||
template<std::size_t N>
|
||||
struct hash<sprout::bitset<N> >
|
||||
: public sprout::hash<sprout::bitset<N> >
|
||||
{};
|
||||
} // namespace std
|
||||
|
||||
#endif // #ifndef SPROUT_BITSET_HASH_HPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue