aboutsummaryrefslogtreecommitdiffstats
path: root/audio/libofa
diff options
context:
space:
mode:
authoralexbl <alexbl@FreeBSD.org>2006-10-01 10:38:27 +0800
committeralexbl <alexbl@FreeBSD.org>2006-10-01 10:38:27 +0800
commit31e06b0f175bd98d81407cee2946baa319bbeeec (patch)
tree9c4d38eb46989fa44a5ba1d651892cab3480b361 /audio/libofa
parent696bf5784930e45ea5e05c256ac4673ca1672da0 (diff)
downloadfreebsd-ports-gnome-31e06b0f175bd98d81407cee2946baa319bbeeec.tar.gz
freebsd-ports-gnome-31e06b0f175bd98d81407cee2946baa319bbeeec.tar.zst
freebsd-ports-gnome-31e06b0f175bd98d81407cee2946baa319bbeeec.zip
- Unbreak on gcc 4.1
Approved by: novel (mentor, implicit) Obtained from: musicbrainz SVN repository
Diffstat (limited to 'audio/libofa')
-rw-r--r--audio/libofa/files/patch-lib_JAMA_tnt__math_utils.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/audio/libofa/files/patch-lib_JAMA_tnt__math_utils.h b/audio/libofa/files/patch-lib_JAMA_tnt__math_utils.h
new file mode 100644
index 000000000000..f8506791a19d
--- /dev/null
+++ b/audio/libofa/files/patch-lib_JAMA_tnt__math_utils.h
@@ -0,0 +1,33 @@
+--- lib/JAMA/tnt_math_utils.h.orig Sat Sep 30 19:34:43 2006
++++ lib/JAMA/tnt_math_utils.h Sat Sep 30 19:36:07 2006
+@@ -20,6 +20,14 @@
+ 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
+ using (a * sqrt( 1 + (b/a) * (b/a))), rather than
+@@ -55,15 +63,6 @@
+ 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