Skip to content

Commit

Permalink
Fix issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
HaxyM authored Oct 1, 2024
1 parent 06a8eb3 commit 8674ff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/crap/algorithm.d/isheapvalue.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ namespace crap
template <std :: size_t ... Indices> using CheckIndices =
findIfValue<std :: size_t, CheckIfFails, Indices...>;
using Implementation =
typename iotaValue <sizeof...(Values), std :: size_t, 1u> :: template
typename iotaValue <sizeof...(Values) - 1u, std :: size_t, 1u> :: template
type<CheckIndices>;
public:
constexpr const static bool value = (Implementation :: value == Impementation :: npos);
constexpr const static bool value = (Implementation :: value == Implementation :: npos);
using value_type = decltype(value);
constexpr operator value_type () const noexcept;
};
Expand Down

0 comments on commit 8674ff4

Please sign in to comment.