aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Carpet/CarpetLib/src/vect.hh15
1 files changed, 2 insertions, 13 deletions
diff --git a/Carpet/CarpetLib/src/vect.hh b/Carpet/CarpetLib/src/vect.hh
index 95840b17c..a8b708cca 100644
--- a/Carpet/CarpetLib/src/vect.hh
+++ b/Carpet/CarpetLib/src/vect.hh
@@ -407,19 +407,8 @@ DECLARE_OPERATOR_1_RET (operator!, !, bool)
DECLARE_FUNCTION_2 (max)
DECLARE_FUNCTION_2 (min)
DECLARE_FUNCTION_2 (pow)
-
-template<typename T>
-T idiv(T const& x, T const& y)
-{
- return x>=T(0) ? x/y : -(-x/y);
-}
-template<typename T>
-T imod(T const& x, T const& y)
-{
- return x>=T(0) ? x%y : -(-x%y);
-}
-DECLARE_FUNCTION_2 (idiv) // divide, rounding to minus infinity
-DECLARE_FUNCTION_2 (imod) // modulo, rounding to minus infinity
+DECLARE_FUNCTION_2 (idiv)
+DECLARE_FUNCTION_2 (imod)
DECLARE_OPERATOR_2 (operator+, +)
DECLARE_OPERATOR_2 (operator-, -)