summaryrefslogtreecommitdiffstats
path: root/graphics/inkscape/files/patch-src::remove-last.h
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2009-04-11 03:24:39 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2009-04-11 03:24:39 +0800
commit58794b38b1a24b93c9a8c3321694e3883bae4cd0 (patch)
tree3d921b9d8836f0a4c0ba361d4581a70d202545ad /graphics/inkscape/files/patch-src::remove-last.h
parentf33c5fb61cfe4c8856817db7f2c84041a862250b (diff)
downloadmarcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar
marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.gz
marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.bz2
marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.lz
marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.xz
marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.zst
marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.zip
Remove these ports now that they have been merged into FreeBSD ports.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12240 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics/inkscape/files/patch-src::remove-last.h')
-rw-r--r--graphics/inkscape/files/patch-src::remove-last.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/graphics/inkscape/files/patch-src::remove-last.h b/graphics/inkscape/files/patch-src::remove-last.h
deleted file mode 100644
index 059f14ac7..000000000
--- a/graphics/inkscape/files/patch-src::remove-last.h
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/remove-last.h.orig Mon Apr 12 09:56:06 2004
-+++ src/remove-last.h Mon Apr 12 09:56:47 2004
-@@ -2,6 +2,7 @@
- #define __REMOVE_LAST_H__
-
- #include <vector>
-+#include <algorithm>
- #include <glib.h>
-
- template<class T>
-@@ -9,7 +10,7 @@
- {
- using std::vector;
-
-- typename vector<T>::reverse_iterator i(find(seq.rbegin(), seq.rend(), elem));
-+ typename vector<T>::reverse_iterator i(std::find(seq.rbegin(), seq.rend(), elem));
- g_assert( i != seq.rend() );
- typename vector<T>::iterator ii(&*i);
- seq.erase(ii);