diff options
Diffstat (limited to 'net/netmap/files/patch-netmap::misc.h')
-rw-r--r-- | net/netmap/files/patch-netmap::misc.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/net/netmap/files/patch-netmap::misc.h b/net/netmap/files/patch-netmap::misc.h deleted file mode 100644 index 4ea51bf3124e..000000000000 --- a/net/netmap/files/patch-netmap::misc.h +++ /dev/null @@ -1,28 +0,0 @@ ---- netmap/misc.h.orig Sun Dec 15 14:54:26 2002 -+++ netmap/misc.h Sun Dec 15 14:54:26 2002 -@@ -6,6 +6,7 @@ - #include <iostream> - - #include <list> -+using namespace std; - - - string indent(unsigned); -@@ -21,7 +22,7 @@ - template <class T> - bool contains(list<T>& l, const T& t) - { -- for(list<T>::iterator li = l.begin(); li != l.end(); li++) -+ for(typename list<T>::iterator li = l.begin(); li != l.end(); li++) - if((*li) == t) - return true; - return false; -@@ -31,7 +32,7 @@ - list<T> intersect(list<T>& l1, list<T>& l2) - { - list<T> result; -- for(list<T>::iterator li = l1.begin(); li != l1.end(); li++) -+ for(typename list<T>::iterator li = l1.begin(); li != l1.end(); li++) - if(contains(l2, *li)) - result.push_back(*li); - |