Skip to content

Commit

Permalink
missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
kelbon committed Aug 13, 2023
1 parent 937bdea commit 1b487e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
compiler: [g++-12, clang++-14]
compiler: [g++-13, clang++-15]
cpp_standard: [20]
build_type: [debug_dev, release_dev]
runs-on: ${{matrix.os}}
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install ninja-build lld gcc-12 clang-14
sudo apt-get install ninja-build lld gcc-13 clang-15
sudo ln -sf /usr/local/bin/ld /usr/bin/lld
- name: Configure CMake
run: |
Expand Down
1 change: 1 addition & 0 deletions include/common.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <cstring> // memcpy
#include <utility>
#include <type_traits>
#include <cstddef>
#include <optional>
Expand Down

0 comments on commit 1b487e9

Please sign in to comment.