Skip to content

Commit

Permalink
removed junk code/comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Mauney committed Oct 10, 2024
1 parent 9dd8a6a commit dc73122
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ports-of-call/span.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,7 @@ class span {
// constructs an empty span
// - data() == nullptr
// - size() == 0
template <std::size_t E = Extent,
// span_REQUIRES(E == dynamic_extent || E <= 0 ) >
typename std::enable_if<(E == dynamic_extent || E <= 0), int>::type = 0>
template <std::size_t E = Extent, span_REQUIRES(E == dynamic_extent || E <= 0)>
constexpr span() noexcept {}

// constructs a span that is a view over the range [first, first+count)
Expand Down

0 comments on commit dc73122

Please sign in to comment.