summaryrefslogtreecommitdiff
path: root/games/spaceracer/patches/patch-aa
blob: 746d81006cc1f2bc19cf16875bc2882197db6d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$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);
     }