Replaced C cast to long with a static_cast<const void*>() to avoid a build error under Mingw 64.

This commit is contained in:
Robert Osfield
2014-01-31 19:18:18 +00:00
parent 5f8e2bda2f
commit 306a4f2d2d

View File

@@ -528,7 +528,7 @@ void Glyph::subload() const
"\t "<<s()<<" ,"<<t()<<std::endl<<hex<<
"\t 0x"<<(GLenum)getPixelFormat()<<std::endl<<
"\t 0x"<<(GLenum)getDataType()<<std::endl<<
"\t 0x"<<(unsigned long)data()<<");"<<dec<<std::endl;
"\t "<<static_cast<const void*>(data())<<");"<<dec<<std::endl;
}
}