Hash :6ba54b3d Author : Date :
2008-05-08T23:31:55
disable "'this': used in base member initializer list" warning. although it is dangerous practice, it's valid and ftgl does not use the passed pointer until well after the object is guaranteed to be fully constructed.
// GLUT
#define HAVE_GL_GLUT_H
// M_PI and friends on VC
#define _USE_MATH_DEFINES
// quell spurious "'this': used in base member initializer list" warnings
#ifdef _MSC_VER
#pragma warning(disable: 4355)
#endif