From: Jakub Wilk <jwilk@debian.org>
Date: Sun, 30 May 2010 11:36:08 +0200
Subject: Disable dead code that is causing compilation errors.

Bug-Debian: https://bugs.debian.org/583281
Last-Update: 2011-02-02
---
 image/ImageIterator2.hh | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/image/ImageIterator2.hh b/image/ImageIterator2.hh
index f729b98..a94b3c3 100644
--- a/image/ImageIterator2.hh
+++ b/image/ImageIterator2.hh
@@ -51,12 +51,14 @@ public:
       return a;
     }
 
+#if 0
     accu& abs() {
       v[0] = std::abs(v[0]);
       v[1] = std::abs(v[1]);
       v[2] = std::abs(v[2]);
       return *this;
     }
+#endif
     
     void saturate () {
       v[0] = std::min (std::max (v[0], (vtype)0), (vtype)0xff);
@@ -211,6 +213,7 @@ public:
       return a;
     }
     
+#if 0
     accu& abs() {
       v[0] = std::abs(v[0]);
       v[1] = std::abs(v[1]);
@@ -218,6 +221,7 @@ public:
       v[3] = std::abs(v[3]);
       return *this;
     }
+#endif
 
     void saturate () {
       v[0] = std::min (std::max (v[0], (vtype)0), (vtype)0xff);
@@ -383,12 +387,14 @@ public:
       return a;
     }
     
+#if 0
     accu& abs() {
       v[0] = std::abs(v[0]);
       v[1] = std::abs(v[1]);
       v[2] = std::abs(v[2]);
       return *this;
     }
+#endif
 
     void saturate () {
       v[0] = std::min (std::max (v[0], (vtype)0), (vtype)0xffff);
@@ -714,10 +720,12 @@ public:
       return a;
     }
 
+#if 0
     accu& abs() {
       v[0] = std::abs(v[0]);
       return *this;
     }
+#endif
 
     void saturate () {
       v[0] = std::min (std::max (v[0], (vtype)0), (vtype)0xff);
@@ -849,10 +857,12 @@ public:
       return a;
     }
     
+#if 0
     accu& abs() {
       v[0] = std::abs(v[0]);
       return *this;
     }
+#endif
 
     void saturate () {
       v[0] = std::min (std::max (v[0], (vtype)0), (vtype)0xffff);
