Skip to content

Commit

Permalink
fix: please test workflow no. 2
Browse files Browse the repository at this point in the history
  • Loading branch information
DNKpp committed Sep 30, 2023
1 parent dfe45b0 commit b8d5045
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions include/Simple-Utility/graph/Queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ namespace sl::graph::queue::detail
template <class T>
struct dummy_input_range
{
// ReSharper disable CppFunctionIsNotImplemented
struct iterator
{
using iterator_concept = std::input_iterator_tag;
Expand All @@ -180,9 +179,9 @@ namespace sl::graph::queue::detail
bool operator==(const iterator&) const = default;

Check warning on line 179 in include/Simple-Utility/graph/Queue.hpp

View check run for this annotation

Codecov / codecov/patch

include/Simple-Utility/graph/Queue.hpp#L179

Added line #L179 was not covered by tests
};

iterator begin();
iterator end();
// ReSharper restore CppFunctionIsNotImplemented
static iterator begin() { return {}; }

Check warning on line 182 in include/Simple-Utility/graph/Queue.hpp

View check run for this annotation

Codecov / codecov/patch

include/Simple-Utility/graph/Queue.hpp#L182

Added line #L182 was not covered by tests

static iterator end() { return {}; }

Check warning on line 184 in include/Simple-Utility/graph/Queue.hpp

View check run for this annotation

Codecov / codecov/patch

include/Simple-Utility/graph/Queue.hpp#L184

Added line #L184 was not covered by tests
};

static_assert(std::ranges::input_range<dummy_input_range<int>>);
Expand Down

0 comments on commit b8d5045

Please sign in to comment.