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:22 +00:00
parent 5a8aee3ede
commit d91c8b81cd

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;
}
}