summaryrefslogtreecommitdiff
path: root/src/util/integer_cln_imp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/integer_cln_imp.h')
-rw-r--r--src/util/integer_cln_imp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/integer_cln_imp.h b/src/util/integer_cln_imp.h
index 7d7b002f2..d3d9faf56 100644
--- a/src/util/integer_cln_imp.h
+++ b/src/util/integer_cln_imp.h
@@ -33,13 +33,13 @@
#include "base/exception.h"
#include "cvc4_export.h" // remove when Cvc language support is removed
-namespace CVC5 {
+namespace cvc5 {
class Rational;
class CVC4_EXPORT Integer
{
- friend class CVC5::Rational;
+ friend class cvc5::Rational;
public:
/**
@@ -380,11 +380,11 @@ class CVC4_EXPORT Integer
struct IntegerHashFunction
{
- size_t operator()(const CVC5::Integer& i) const { return i.hash(); }
+ size_t operator()(const cvc5::Integer& i) const { return i.hash(); }
}; /* struct IntegerHashFunction */
std::ostream& operator<<(std::ostream& os, const Integer& n);
-} // namespace CVC5
+} // namespace cvc5
#endif /* CVC4__INTEGER_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback