Header optimizations (#1684)

Shouldn't break anything. I hope.
This commit is contained in:
Ivan 2016-04-27 01:27:24 +03:00
parent da7472fe81
commit aafcf44581
89 changed files with 2370 additions and 2348 deletions

View file

@ -108,7 +108,7 @@ bool cpu_thread::check_status()
const auto state_ = state.load();
if (state_ & to_mset(cpu_state::ret, cpu_state::stop))
if (state_ & make_bitset(cpu_state::ret, cpu_state::stop))
{
return true;
}