Skip to content

Commit

Permalink
Fix build part 2?
Browse files Browse the repository at this point in the history
  • Loading branch information
braxtons12 committed Jan 29, 2024
1 parent b7476b2 commit 9cc3bb8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/hyperion/mpl/value.h
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,9 @@ namespace hyperion::mpl {
static_assert(Value<3>{} == 3,
"hyperion::mpl::Value implicit conversion test case (failing)");

static_assert(std::same_as<decltype(as_value(std::integral_constant<int, 3>{})), Value<3>>,
"hyperion::mpl::as_value test case 1 (failing)");
static_assert(
std::same_as<decltype(as_value(std::integral_constant<int, 3>{})), Value<3, int>>,
"hyperion::mpl::as_value test case 1 (failing)");

static_assert(Value<3>{} == 3_value,
"hyperion::mpl::operator"
Expand Down

0 comments on commit 9cc3bb8

Please sign in to comment.