Merge pull request #2082 from FernandoS27/txq-stl

Fix TXQ not using the component mask.
This commit is contained in:
bunnei 2019-02-04 20:22:32 -05:00 committed by GitHub
commit bb4549a73d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 6 deletions

View file

@ -981,6 +981,10 @@ union Instruction {
}
return false;
}
bool IsComponentEnabled(std::size_t component) const {
return ((1ULL << component) & component_mask) != 0;
}
} txq;
union {