aboutsummaryrefslogtreecommitdiff
path: root/graphics/tulip/files/patch-StrahlerMetric.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/tulip/files/patch-StrahlerMetric.cpp')
-rw-r--r--graphics/tulip/files/patch-StrahlerMetric.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/graphics/tulip/files/patch-StrahlerMetric.cpp b/graphics/tulip/files/patch-StrahlerMetric.cpp
deleted file mode 100644
index d142cd3a4732..000000000000
--- a/graphics/tulip/files/patch-StrahlerMetric.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- plugins/metric/StrahlerMetric.cpp.orig Fri Dec 6 21:39:55 2002
-+++ plugins/metric/StrahlerMetric.cpp Fri Oct 29 14:14:17 2004
-@@ -27,7 +27,7 @@
- }
- };
-
-- struct equal_to<couple> {
-+ template <> struct equal_to<couple> {
- bool operator()(const couple &c,const couple &d)
- {
- if ((c.r==d.r) && (c.p==d.p)) return true;
-@@ -35,7 +35,7 @@
- }
- };
-
-- struct less<couple>
-+ template <> struct less<couple>
- {
- bool operator()(const couple &c,const couple &d) {
- if (c.r<d.r) return true;