From 93a176884dc06a8752dd13726a694a3cc75a67dc Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Tue, 25 Apr 2017 09:08:16 -0400 Subject: [PATCH] fix naming error --- src/Simulation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Simulation.cpp b/src/Simulation.cpp index fd76799..983b7dd 100644 --- a/src/Simulation.cpp +++ b/src/Simulation.cpp @@ -120,7 +120,7 @@ bool Simulation::parseVector(string fileName) { while(true) { if (!(in >> tmpString)) break; if (!(in >> tmpString)) break; - if (!(in >> tmpInt)) break; + if (!(in >> timeInt)) break; if (!(in >> valInt)) break; for(auto i = wires.begin(); i != wires.end(); ++i) {