fix double pointer stupidity

This commit is contained in:
Joel Beckmeyer 2017-04-23 20:44:45 -04:00
parent e4d4adc2ce
commit d07406cd58

View File

@ -104,7 +104,7 @@ bool Simulation::parseVector(string fileName) {
in >> valInt; in >> valInt;
for(auto i = wires.begin(); i != wires.end(); ++i) { for(auto i = wires.begin(); i != wires.end(); ++i) {
if(i->getName() == tmpString) { if((**i).getName() == tmpString) {
tmpWire = *i; tmpWire = *i;
} }
} }