1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

fix math::log implementation

support std::hash
This commit is contained in:
bolero-MURAKAMI 2013-02-07 03:11:17 +09:00
parent 9140b68379
commit 66da9f4fea
20 changed files with 288 additions and 5 deletions

View file

@ -25,4 +25,18 @@ namespace sprout {
} // namespace logic
} // namespace sprout
namespace std {
//
// hash
//
template<>
struct hash<sprout::logic::indeterminate_keyword_t>
: public sprout::hash<sprout::logic::indeterminate_keyword_t>
{};
template<>
struct hash<sprout::logic::tribool>
: public sprout::hash<sprout::logic::tribool>
{};
} // namespace std
#endif // #ifndef SPROUT_LOGIC_TRIBOOL_HASH_HPP