The smallest change I've made to suppress warnings is:
503a504
505c506
< static_cast<bool>(total_req_size % partition_size);
---
((total_req_size % partition_size) ? true : false);
The command was:
diff pool_1.15.hpp pool.hpp > pool.diff
Best,
Oleg Abrosimov