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.

This commit is contained in:
David Williams 2014-06-03 15:51:42 +02:00
parent 78d750a0f2
commit 5701e7a6cc

View File

@ -38,12 +38,12 @@ freely, subject to the following restrictions:
namespace PolyVox
{
template <typename _VertexType>
template <typename VertexType>
class Mesh
{
public:
typedef _VertexType VertexType;
typedef VertexType VertexType;
Mesh();
~Mesh();