Skip to content

Commit

Permalink
Merge pull request #1812 from stribor14/master
Browse files Browse the repository at this point in the history
Add missing includes
  • Loading branch information
ericniebler committed Mar 10, 2024
2 parents 97452bb + bc97fb1 commit 53c40dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/range/v3/action.hpp
Expand Up @@ -24,6 +24,7 @@
#include <range/v3/action/join.hpp>
#include <range/v3/action/push_back.hpp>
#include <range/v3/action/push_front.hpp>
#include <range/v3/action/remove.hpp>
#include <range/v3/action/remove_if.hpp>
#include <range/v3/action/reverse.hpp>
#include <range/v3/action/shuffle.hpp>
Expand Down
1 change: 1 addition & 0 deletions include/range/v3/algorithm.hpp
Expand Up @@ -20,6 +20,7 @@
#include <range/v3/algorithm/any_of.hpp>
#include <range/v3/algorithm/binary_search.hpp>
#include <range/v3/algorithm/contains.hpp>
#include <range/v3/algorithm/contains_subrange.hpp>
#include <range/v3/algorithm/copy.hpp>
#include <range/v3/algorithm/copy_backward.hpp>
#include <range/v3/algorithm/copy_if.hpp>
Expand Down
1 change: 1 addition & 0 deletions test/bug-guard.cpp
Expand Up @@ -16,4 +16,5 @@ int main()
{
// make sure, that `utility.hpp` is included correctly
ranges::optional<int> a;
(void) a;
}

0 comments on commit 53c40dd

Please sign in to comment.