1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Changed fallthrough return value to nullptr in OpenGLContext::NativeContext::getNativeHandle() on Windows

This commit is contained in:
ed 2020-03-04 10:00:10 +00:00
parent 67486d47e0
commit ccbe0816d0

View file

@ -155,7 +155,7 @@ public:
if (nativeWindow != nullptr)
return (HWND) nativeWindow->getNativeHandle();
return {};
return nullptr;
}
private: