mirror of
https://github.com/glfw/glfw.git
synced 2025-10-04 05:36:35 +00:00
Add const to cast in glfwGetCocoaOpenedFilenames().
This commit is contained in:
parent
ec03b24c71
commit
ccd95a8948
@ -625,5 +625,5 @@ const char* _glfwPlatformGetVersionString(void)
|
|||||||
|
|
||||||
const char* const* glfwGetCocoaOpenedFilenames(void)
|
const char* const* glfwGetCocoaOpenedFilenames(void)
|
||||||
{
|
{
|
||||||
return _glfw.ns.openedFilenames;
|
return (const char* const*) _glfw.ns.openedFilenames;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user