aboutsummaryrefslogtreecommitdiffstats
path: root/math/graphthing/files/patch-src-graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'math/graphthing/files/patch-src-graph.h')
-rw-r--r--math/graphthing/files/patch-src-graph.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/math/graphthing/files/patch-src-graph.h b/math/graphthing/files/patch-src-graph.h
deleted file mode 100644
index d9d0ebd53a6d..000000000000
--- a/math/graphthing/files/patch-src-graph.h
+++ /dev/null
@@ -1,25 +0,0 @@
---- src/graph.h.orig Fri Oct 25 13:50:30 2002
-+++ src/graph.h Fri Oct 25 13:52:29 2002
-@@ -20,16 +20,16 @@
- class Graph
- {
- private:
-- vector<Edge *> E;
-- vector<Vertex *> V;
-+ std::vector<Edge *> E;
-+ std::vector<Vertex *> V;
-
-
- public:
-
-- typedef vector<Edge *>::iterator e_iterator;
-- typedef vector<Vertex *>::iterator v_iterator;
-- typedef vector<Edge *>::const_iterator e_const_iterator;
-- typedef vector<Vertex *>::const_iterator v_const_iterator;
-+ typedef std::vector<Edge *>::iterator e_iterator;
-+ typedef std::vector<Vertex *>::iterator v_iterator;
-+ typedef std::vector<Edge *>::const_iterator e_const_iterator;
-+ typedef std::vector<Vertex *>::const_iterator v_const_iterator;
-
-
- Edge *e_selected_head;