diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-09-20 19:34:58 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-09-20 19:34:58 +0000 |
commit | 1f16f5e923efdaa0086ab117a0ea1b0598c150b3 (patch) | |
tree | cc78404f78489cb2a0bce187031dd6d96dbfdfd1 /net/netmap/files/patch-belgolib::dirs.h | |
parent | Fix bad C++ code. Unmark BROKEN. (diff) |
Fix bad C++ code, to unbreak on 5.X and -CURRENT.
Reported by: kris
Approved by: portmgr (marcus), fjoe (mentor, implicit)
Notes
Notes:
svn path=/head/; revision=118304
Diffstat (limited to 'net/netmap/files/patch-belgolib::dirs.h')
-rw-r--r-- | net/netmap/files/patch-belgolib::dirs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/netmap/files/patch-belgolib::dirs.h b/net/netmap/files/patch-belgolib::dirs.h index 4d912a46559c..27542fb44f9c 100644 --- a/net/netmap/files/patch-belgolib::dirs.h +++ b/net/netmap/files/patch-belgolib::dirs.h @@ -8,3 +8,12 @@ #ifndef __make_dep__ #include <string> +@@ -91,7 +92,7 @@ + { + list<T*> result=ld1; + +- for(list<T*>::const_iterator i = ld2.begin(); i != ld2.end(); i++) ++ for(typename list<T*>::const_iterator i = ld2.begin(); i != ld2.end(); i++) + result.push_back(*i); + + return result; |