From 5701e7a6ccf45da262ad11c6723a5b16008111a7 Mon Sep 17 00:00:00 2001 From: David Williams Date: Tue, 3 Jun 2014 15:51:42 +0200 Subject: [PATCH] It seems we don't need these leading underscores? Perhaps they were required in older versions of Visual Studio? Let's see what GCC/Clang says. --- library/PolyVoxCore/include/PolyVoxCore/Mesh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/PolyVoxCore/include/PolyVoxCore/Mesh.h b/library/PolyVoxCore/include/PolyVoxCore/Mesh.h index 9403c5d8..6b122323 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/Mesh.h +++ b/library/PolyVoxCore/include/PolyVoxCore/Mesh.h @@ -38,12 +38,12 @@ freely, subject to the following restrictions: namespace PolyVox { - template + template class Mesh { public: - typedef _VertexType VertexType; + typedef VertexType VertexType; Mesh(); ~Mesh();