From 6a30269afc9a356346efc47d9f32e4372ceb4cbe Mon Sep 17 00:00:00 2001
From: Rene Milk <rene.milk@uni-muenster.de>
Date: Wed, 22 Jul 2015 16:26:42 +0200
Subject: [PATCH] [common/math] removes deprecated sign function

---
 dune/stuff/common/math.hh | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/dune/stuff/common/math.hh b/dune/stuff/common/math.hh
index d70d2fe3e..4fa8262e2 100644
--- a/dune/stuff/common/math.hh
+++ b/dune/stuff/common/math.hh
@@ -177,12 +177,6 @@ T clamp(const T var, const T min, const T max)
   return (var < min) ? min : (var > max) ? max : var;
 }
 
-//! no-branch sign function
-inline long DUNE_DEPRECATED_MSG("Please consider the type safe signum function instead") sign(long x)
-{
-  return long(x != 0) | (long(x >= 0) - 1);
-}
-
 /**
  * \returns: -1 iff val < 0
  *            0 iff val == 0
-- 
GitLab