fix boolean name to be more accurate

This commit is contained in:
Joel Beckmeyer 2017-04-10 20:06:09 -04:00
parent dc27677a67
commit f365f0ab2b
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class wire {
int wireNumber, value, lastEvent;
vector<int> history (60, -1);
string name;
bool isInput;
bool isPrint;
vector<gate*> gates;
};