Skip to content

Commit 331c441

Browse files
committed
Fixed APIENTRY redefinition due to Window.cpp include order
1 parent 250ee3c commit 331c441

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Sources/OvWindowing/src/OvWindowing/Window.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010

1111
#include <stb_image/stb_image.h>
1212

13-
#include <GLFW/glfw3.h>
14-
15-
#include <stdexcept>
16-
1713
#if defined(_WIN32)
1814
#include <windows.h>
1915
#endif
2016

17+
#include <GLFW/glfw3.h>
18+
19+
#include <stdexcept>
20+
2121
std::unordered_map<GLFWwindow*, OvWindowing::Window*> OvWindowing::Window::__WINDOWS_MAP;
2222

2323
OvWindowing::Window::Window(const Context::Device& p_device, const Settings::WindowSettings& p_windowSettings) :

0 commit comments

Comments
 (0)