removed a wrong template specification for mac gcc compiling

This commit is contained in:
Paolo Cignoni 2007-01-18 01:34:07 +00:00
parent 9e847c9ddd
commit 8b2578e208
1 changed files with 2 additions and 2 deletions
apps/sample/trimesh_isosurface

View File

@ -109,9 +109,9 @@ private:
{
_x_cs[index] = (VertexIndex) _mesh->vert.size();
pos = _x_cs[index];
Allocator<MeshType>::AddVertices( *_mesh, 1 );
Allocator<MeshType>::AddVertices( *_mesh, 1 );
v = &_mesh->vert[pos];
_volume->GetXIntercept<VertexPointer>(p1, p2, v, _thr);
_volume->GetXIntercept(p1, p2, v, _thr);
return;
}
}