- added missing ifndef

This commit is contained in:
Guido Ranzuglia 2016-08-30 02:37:19 +02:00
parent 64aaeaf2d0
commit 92dfeec652
1 changed files with 6 additions and 1 deletions

View File

@ -21,6 +21,9 @@
* * * *
****************************************************************************/ ****************************************************************************/
#ifndef __VCG_GL_TYPE_NAME
#define __VCG_GL_TYPE_NAME
namespace vcg namespace vcg
{ {
template <typename T> template <typename T>
@ -38,4 +41,6 @@ namespace vcg
typedef GLdouble ScalarType; typedef GLdouble ScalarType;
static GLenum SCALAR() { return GL_DOUBLE; } static GLenum SCALAR() { return GL_DOUBLE; }
}; };
} }
#endif