Skip to content

Commit 303a9d7

Browse files
christophechristophe-lunarg
authored andcommitted
Fix C.I. failure
1 parent 9e6f0ec commit 303a9d7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ jobs:
113113
exclude:
114114
- os: ubuntu-20.04
115115
std: 20
116+
- os: ubuntu-latest
117+
std: 98
116118

117119
steps:
118120
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
@@ -183,11 +185,11 @@ jobs:
183185
strategy:
184186
fail-fast: false
185187
matrix:
186-
os: [macos-latest, macos-11]
188+
os: [macos-latest, macos-12]
187189
std: [98, 11, 14, 17, 20]
188190
config: [Debug, Release]
189191
exclude:
190-
- os: macos-11
192+
- os: macos-12
191193
std: 20
192194

193195
steps:

glm/detail/qualifier.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,13 +240,15 @@ namespace detail
240240
struct storage<3, unsigned int, true> : public storage<4, unsigned int, true>
241241
{};
242242

243+
# if GLM_HAS_ALIGNOF
243244
template<>
244245
struct storage<3, double, true>
245246
{
246247
typedef struct alignas(4 * sizeof(double)) type {
247248
double data[4];
248249
} type;
249250
};
251+
# endif//GLM_HAS_ALIGNOF
250252

251253
# endif
252254

0 commit comments

Comments
 (0)