From 8b2578e2080cf8a9ec2951c2f0c6c1f35f5a0309 Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 18 Jan 2007 01:34:07 +0000 Subject: [PATCH] removed a wrong template specification for mac gcc compiling --- apps/sample/trimesh_isosurface/trivial_walker.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sample/trimesh_isosurface/trivial_walker.h b/apps/sample/trimesh_isosurface/trivial_walker.h index 53e7e29b..087ffd78 100644 --- a/apps/sample/trimesh_isosurface/trivial_walker.h +++ b/apps/sample/trimesh_isosurface/trivial_walker.h @@ -109,9 +109,9 @@ private: { _x_cs[index] = (VertexIndex) _mesh->vert.size(); pos = _x_cs[index]; - Allocator::AddVertices( *_mesh, 1 ); + Allocator::AddVertices( *_mesh, 1 ); v = &_mesh->vert[pos]; - _volume->GetXIntercept(p1, p2, v, _thr); + _volume->GetXIntercept(p1, p2, v, _thr); return; } }