Skip to content

Use constexpr/inline for header implementations. #1573

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading