fix bracket error

This commit is contained in:
Joel Beckmeyer 2017-04-23 20:40:16 -04:00
parent 2a697fecbf
commit dd7fb51200

View File

@ -8,7 +8,7 @@ int main() {
string fileName; string fileName;
Simulation e; Simulation e;
getline(in, fileName); getline(cin, fileName);
e.parseCircuit(fileName); e.parseCircuit(fileName);
// 2. Parse the vector file to initialize the simulation Queue with initial // 2. Parse the vector file to initialize the simulation Queue with initial
@ -25,4 +25,3 @@ int main() {
// 4. Print the results of the simulation // 4. Print the results of the simulation
e.print(); e.print();
} }
}