We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 197879b commit 36f028cCopy full SHA for 36f028c
.github/workflows/build.yml
@@ -16,6 +16,7 @@ jobs:
16
17
env:
18
PKG_CONFIG_PATH: ${{github.workspace}}/install/lib/x86_64-linux-gnu/pkgconfig
19
+ CC: gcc-13
20
21
steps:
22
- uses: actions/checkout@v4
include/MyGL/Event.hpp
@@ -296,7 +296,7 @@ namespace my
296
/**
297
* @brief A struct for storing the state of the keyboard modifier keys
298
*/
299
- struct Modifiers {
+ struct MYGL_EXPORT Modifiers {
300
bool shift = false;
301
bool ctrl = false;
302
bool alt = false;
@@ -351,4 +351,4 @@ namespace my
351
352
} // namespace my
353
354
-#endif // MYGL_EVENT
+#endif // MYGL_EVENT
0 commit comments