add a missing cast
This commit is contained in:
parent
2f573dd6b4
commit
80d17ccf4d
|
|
@ -173,7 +173,7 @@ QGLFunctionPointer QGL_getExtensionFunc( const char* symbol ){
|
||||||
}
|
}
|
||||||
#elif defined( WIN32 )
|
#elif defined( WIN32 )
|
||||||
ASSERT_NOTNULL( qwglGetProcAddress );
|
ASSERT_NOTNULL( qwglGetProcAddress );
|
||||||
return qwglGetProcAddress( symbol );
|
return (QGLFunctionPointer) qwglGetProcAddress( symbol );
|
||||||
#else
|
#else
|
||||||
#error "unsupported platform"
|
#error "unsupported platform"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user