Skip to content

Commit

Permalink
Merge pull request #1573 from evoskuil/master
Browse files Browse the repository at this point in the history
Use constexpr/inline for header implementations.
  • Loading branch information
evoskuil authored Dec 27, 2024
2 parents 530eff3 + 5ca1bc9 commit 24a18bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/utreexo/utreexo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ inline positions detwin(const positions& nodes, uint8_t forest_rows) NOEXCEPT

// TODO: test.
// TODO: guard overflows.
bool roots_to_destroy(positions& out, std::vector<node_hash>&& roots,
inline bool roots_to_destroy(positions& out, std::vector<node_hash>&& roots,
uint64_t adding, uint64_t leaves) NOEXCEPT
{
uint8_t row{};
Expand Down Expand Up @@ -232,7 +232,7 @@ bool roots_to_destroy(positions& out, std::vector<node_hash>&& roots,

// TODO: test.
// TODO: guard overflows.
std::tuple<uint8_t, uint8_t, uint64_t> detect_offset(uint64_t node,
constexpr std::tuple<uint8_t, uint8_t, uint64_t> detect_offset(uint64_t node,
uint64_t leaves) NOEXCEPT
{
uint8_t trees{};
Expand Down

0 comments on commit 24a18bd

Please sign in to comment.