Try to fix build in Linux.

This commit is contained in:
megamage
2011-12-21 08:55:54 -05:00
parent 2d93bd07ba
commit 36bfce08b4

View File

@@ -177,7 +177,7 @@ class NGrid
uint32 count = 0;
for (uint32 x = 0; x < N; ++x)
for (uint32 y = 0; y < N; ++y)
count += i_cells[x][y].GetWorldObjectCountInGrid<T>();
count += i_cells[x][y].template GetWorldObjectCountInGrid<T>();
return count;
}