fix double pointer stupidity
This commit is contained in:
parent
e4d4adc2ce
commit
d07406cd58
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user