Skip to content

Commit

Permalink
Use constexpr/inline for header implementations.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Dec 26, 2024
1 parent 530eff3 commit 5ca1bc9
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 5ca1bc9

Please sign in to comment.