Skip to content

Commit

Permalink
remove more static asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Oct 11, 2024
1 parent b127d8c commit 9a6f1ef
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/init_from_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ TEST(init_from, init_from) {
std::unique_ptr<test> str_;
};

static_assert(utl::detail::is_brace_constructible<b, 3U>());
static_assert(utl::detail::arity<a>() == 4U);
static_assert(utl::detail::arity<b>() == 4U);

auto src = b{0.0, std::make_unique<float>(10.0F), 42, nullptr};
auto tgt = utl::init_from<a>(src);
ASSERT_TRUE(tgt.has_value());
Expand Down

0 comments on commit 9a6f1ef

Please sign in to comment.