We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d697312 commit a750217Copy full SHA for a750217
t-dll.cc
@@ -49,7 +49,7 @@ inline ivl_dll_t ivl_dlopen(const char *name)
49
50
inline void * ivl_dlsym(ivl_dll_t dll, const char *nm)
51
{
52
- return static_cast<void*>(GetProcAddress((HMODULE)dll, nm));
+ return reinterpret_cast<void*>(GetProcAddress((HMODULE)dll, nm));
53
}
54
55
inline void ivl_dlclose(ivl_dll_t dll)
0 commit comments