Matt Witherspoon

Results 14 issues of Matt Witherspoon

## Change Description Adds some includes needed to build with boost 1.79 beta. The missing includes are solely related to fstream & boost::filesystem::fstream. The boost filesystem docs (even as far...

## Change Description grab bag of misc WASM unit tests for defects fixed years ago. ## Change Type **Select *ONE*:** - [ ] Documentation - [ ] Stability bug fix...

Given a directory that only contains a blocks.log file, eosio-blockslog in 2.0 and 2.1 is able to create an index file from this blocks log, but 2.2 errors out with...

bug
track-in-jira

## Change Description This `is_callable_v` workaround in eos-vm for some old compiler is causing compile failures on clang12 with the error ``` template argument for non-type template parameter must be...

Take this contract: ```c++ #include using namespace eosio; class [[eosio::contract]] membloat : public contract { public: using contract::contract; [[eosio::action]] void nomnomnom() { for(size_t i = 0; i < 20000; ++i)...

track-in-jira

This removes the `is_callable_v` workaround and replaces it with `std::is_invocable_v` as the workaround is causing a ``` template argument for non-type template parameter must be an expression ``` error on...

Change appbase to error out when seeing an unknown plugin before erroring out on an unknown option. Otherwise it’s a little confusing that the reason the option isn’t recognized is...

It would be nice for a config file to have the ability to include another config file, maybe with a `include=nodes.ini` or something. This would allow for easier sharing of...

enhancement