Address Comments

This commit is contained in:
Levi Behunin 2020-09-24 21:52:23 -06:00
parent a0094d0b23
commit 0858ed54d4
3 changed files with 34 additions and 25 deletions

View file

@ -464,7 +464,11 @@ public:
return operands.size();
}
NodeBlock GetOperands() const {
NodeBlock& GetOperands() {
return operands;
}
const NodeBlock& GetOperands() const {
return operands;
}