Skip to content

Commit

Permalink
Fix C.I. failure
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe committed Jan 19, 2025
1 parent 3836197 commit 4d72242
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ jobs:
exclude:
- os: ubuntu-20.04
std: 20
- os: ubuntu-latest
std: 98

steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
Expand Down Expand Up @@ -183,11 +185,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, macos-11]
os: [macos-latest, macos-12]
std: [98, 11, 14, 17, 20]
config: [Debug, Release]
exclude:
- os: macos-11
- os: macos-12
std: 20

steps:
Expand Down
2 changes: 2 additions & 0 deletions glm/detail/qualifier.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,15 @@ namespace detail
struct storage<3, unsigned int, true> : public storage<4, unsigned int, true>
{};

# if GLM_HAS_ALIGNOF
template<>
struct storage<3, double, true>
{
typedef struct alignas(4 * sizeof(double)) type {
double data[4];
} type;
};
# endif//GLM_HAS_ALIGNOF

# endif

Expand Down

0 comments on commit 4d72242

Please sign in to comment.