Address Comments

This commit is contained in:
Levi Behunin
2020-09-24 21:52:23 -06:00
parent d53b79ff5c
commit a19dc3bf00
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;
}