pkgsrc/games/spaceracer/patches/patch-aa
2006-04-28 16:19:27 +00:00

13 lines
463 B
Text

$NetBSD: patch-aa,v 1.1 2006/04/28 16:19:27 joerg Exp $
--- src/physique/sp_circuit.cpp.orig 2006-04-28 15:52:33.000000000 +0000
+++ src/physique/sp_circuit.cpp
@@ -169,7 +169,7 @@ void OctoTree<T>::FindList(list<T> &l,co
template<class T>
void OctoTree<T>::Add_Liste(list<T> &l,list<T> &l2)
{
- typedef list<T>::iterator iter;
+ typedef typename list<T>::iterator iter;
for(iter i=l2.begin();i!=l2.end();i++){
l.push_back(*i);
}