Skip to content

Commit 71bdafb

Browse files
committed
Remove constexpr to helper function and use concept constrained auto
1 parent a1d37c2 commit 71bdafb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

libraries/core/tests/serialisation/adapters/std/bitset.tests.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ namespace morpheus::serialisation
2222
using namespace ::testing;
2323
using namespace std::literals::string_view_literals;
2424

25-
template <typename Range>
26-
std::string toBitString(Range const& values)
25+
std::string toBitString(conf::ranges::range auto const& values)
2726
{
2827
std::string result;
2928
result.reserve(std::size(values) * 64uz);

0 commit comments

Comments
 (0)