Skip to content

Commit

Permalink
Fix GCC 13: add missing include (#1761)
Browse files Browse the repository at this point in the history
Co-authored-by: Hannes Vogt <hannes@havogt.de>
  • Loading branch information
petiaccja and havogt committed Aug 16, 2023
1 parent eb31381 commit 4f36f88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container: ghcr.io/gridtools/gridtools-base:${{ matrix.compiler }}
strategy:
matrix:
compiler: [gcc-8, gcc-9, gcc-10, gcc-11, gcc-12, clang-11, clang-12, clang-13, clang-14, clang-15, clang-16, clang-14-cuda-11, gcc-10-cuda-11.8, gcc-11-cuda-12.0, base-hip, gcc-10-hpx, nvhpc-23.3]
compiler: [gcc-8, gcc-9, gcc-10, gcc-11, gcc-12, gcc-13, clang-11, clang-12, clang-13, clang-14, clang-15, clang-16, clang-14-cuda-11, gcc-10-cuda-11.8, gcc-11-cuda-12.0, base-hip, gcc-10-hpx, nvhpc-23.3]
build_type: [debug, release]
exclude:
- compiler: gcc-8
Expand All @@ -21,6 +21,8 @@ jobs:
build_type: debug
- compiler: gcc-10
build_type: debug
- compiler: gcc-11
build_type: debug
- compiler: clang-13
build_type: debug
- compiler: clang-14
Expand Down
1 change: 1 addition & 0 deletions include/gridtools/storage/data_store.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*/
#pragma once

#include <cstdint>
#include <memory>
#include <string>
#include <type_traits>
Expand Down

0 comments on commit 4f36f88

Please sign in to comment.