-
Notifications
You must be signed in to change notification settings - Fork 649
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
Fix build errors and a warning #1421
Conversation
Potential optimization: don't move a temporary as this prevents copy elision
- Add missing FC_REFLECT_TYPENAME on account operation extentions - Replace deprecated call to fc::rand_pseudo_bytes with fc::rand_bytes.
Required for build on some configurations
Hmm, that travis failure makes no sense to me. I'm not sure how 67ccc53 could cause that failure, could the travis tests be unstable? |
Just restarted travis build for this as yes, sometimes the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice work, thanks.
sorry, i didn't saw here the pull is against |
moved to #1426 |
Fix build errors - replaces #1421
std::move
on a temporary value prevents copy elisionFC_REFLECT_TYPENAME
on account operation extensionsfc::rand_pseudo_bytes
withfc::rand_bytes
.smart_ref_impl.hpp
infork_database.cpp
which is required for build on some configurations