summaryrefslogtreecommitdiff
path: root/src/theory/sets/singleton_op.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sets/singleton_op.cpp')
-rw-r--r--src/theory/sets/singleton_op.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/sets/singleton_op.cpp b/src/theory/sets/singleton_op.cpp
index 993457fe8..06d144f72 100644
--- a/src/theory/sets/singleton_op.cpp
+++ b/src/theory/sets/singleton_op.cpp
@@ -28,7 +28,7 @@ std::ostream& operator<<(std::ostream& out, const SingletonOp& op)
size_t SingletonOpHashFunction::operator()(const SingletonOp& op) const
{
- return TypeNodeHashFunction()(op.getType());
+ return std::hash<TypeNode>()(op.getType());
}
SingletonOp::SingletonOp(const TypeNode& elementType)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback