summaryrefslogtreecommitdiffstats
path: root/audio-libs/libofa/tnt.diff
diff options
context:
space:
mode:
Diffstat (limited to 'audio-libs/libofa/tnt.diff')
-rw-r--r--audio-libs/libofa/tnt.diff36
1 files changed, 0 insertions, 36 deletions
diff --git a/audio-libs/libofa/tnt.diff b/audio-libs/libofa/tnt.diff
deleted file mode 100644
index 57425a1527..0000000000
--- a/audio-libs/libofa/tnt.diff
+++ /dev/null
@@ -1,36 +0,0 @@
---- lib/JAMA/tnt_math_utils.h 2007-08-07 23:11:47.000000000 +0200
-+++ tnt_math_utils.h 2007-08-07 23:03:47.000000000 +0200
-@@ -19,6 +19,16 @@
-
- namespace TNT
- {
-+
-+/**
-+ @returns the absolute value of a real (no-complex) scalar.
-+*/
-+template <class Real>
-+Real abs(const Real &a)
-+{
-+ return (a > 0 ? a : -a);
-+}
-+
- /**
- @returns hypotenuse of real (non-complex) scalars a and b by
- avoiding underflow/overflow
-@@ -55,16 +65,7 @@
- return a > b ? a : b;
- }
- */
--
--/**
-- @returns the absolute value of a real (no-complex) scalar.
--*/
--template <class Real>
--Real abs(const Real &a)
--{
-- return (a > 0 ? a : -a);
- }
-
--}
- #endif
- /* MATH_UTILS_H */