You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit introduces workarounds for building Concord-BFT with Clang
after the Ubuntu 22 upgrade.
These workarounds include:
- Changing usage of std::optional<::rocksdb::PinnableSlice> to
std::unique_ptr<::rocksdb::PinnableSlice>, as Clang generates an error
with this particular template instantiation.
- Removal of the local variable totalVal from the function
libutt::Factory::randomWallets, as this variable is unused and (with
-Werror) Clang generates an error for that.
0 commit comments