Skip to content

Commit

Permalink
Add missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
tcbrindle committed Aug 6, 2024
1 parent f4ca665 commit afc3f49
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 1 deletion.
2 changes: 2 additions & 0 deletions test/test_all_any_none.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
#include <doctest/doctest.h>

#include <algorithm>
#include <initializer_list>
#include <vector>

#ifdef USE_MODULES
import flux;
Expand Down
1 change: 1 addition & 0 deletions test/test_bitset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include <bitset>
#include <iostream>
#include <utility>
#include <vector>

#include "test_utils.hpp"

Expand Down
3 changes: 3 additions & 0 deletions test/test_concepts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

#include <doctest/doctest.h>

#include <concepts>
#include <initializer_list>

#ifdef USE_MODULES
import flux;
#else
Expand Down
2 changes: 2 additions & 0 deletions test/test_empty.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

#include <doctest/doctest.h>

#include <concepts>

#ifdef USE_MODULES
import flux;
#else
Expand Down
4 changes: 3 additions & 1 deletion test/test_find.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

#include <array>
#include <forward_list>
#include <concepts>
#include <string>
#include <string_view>
#include <vector>

#ifdef USE_MODULES
Expand Down
3 changes: 3 additions & 0 deletions test/test_flatten.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

#include <array>
#include <string>
#include <string_view>
#include <vector>

#include "test_utils.hpp"

Expand Down
1 change: 1 addition & 0 deletions test/test_fold.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include <array>
#include <chrono>
#include <vector>

#include "test_utils.hpp"

Expand Down
1 change: 1 addition & 0 deletions test/test_overflow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include <doctest/doctest.h>

#include <cstdint>
#include <limits>

#ifdef USE_MODULES
Expand Down
2 changes: 2 additions & 0 deletions test/test_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

#include <doctest/doctest.h>

#include <stdexcept>

#ifndef USE_MODULES
#include <flux.hpp>
#else
Expand Down

0 comments on commit afc3f49

Please sign in to comment.