Skip to content

Commit 36f028c

Browse files
committed
CI: use gcc 13
1 parent 197879b commit 36f028c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616

1717
env:
1818
PKG_CONFIG_PATH: ${{github.workspace}}/install/lib/x86_64-linux-gnu/pkgconfig
19+
CC: gcc-13
1920

2021
steps:
2122
- uses: actions/checkout@v4

include/MyGL/Event.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ namespace my
296296
/**
297297
* @brief A struct for storing the state of the keyboard modifier keys
298298
*/
299-
struct Modifiers {
299+
struct MYGL_EXPORT Modifiers {
300300
bool shift = false;
301301
bool ctrl = false;
302302
bool alt = false;
@@ -351,4 +351,4 @@ namespace my
351351

352352
} // namespace my
353353

354-
#endif // MYGL_EVENT
354+
#endif // MYGL_EVENT

0 commit comments

Comments
 (0)