summaryrefslogtreecommitdiff
path: root/src/util/utility.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/utility.h')
-rw-r--r--src/util/utility.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/util/utility.h b/src/util/utility.h
index 2084ccafb..089be478d 100644
--- a/src/util/utility.h
+++ b/src/util/utility.h
@@ -67,17 +67,6 @@ inline InputIterator find_if_unique(InputIterator first, InputIterator last, Pre
return (match2 == last) ? match : last;
}
-template <class T>
-inline T gcd(T a, T b) {
- while (b != 0) {
- T t = b;
- b = a % t;
- a = t;
- }
- return a;
-}
-
-
}/* CVC4 namespace */
#endif /* __CVC4__UTILITY_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback