From dd7fb5120010733ea32789a2c5524fd3865d2061 Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Sun, 23 Apr 2017 20:40:16 -0400 Subject: [PATCH] fix bracket error --- src/Radec.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Radec.cpp b/src/Radec.cpp index 0a73a41..c271844 100644 --- a/src/Radec.cpp +++ b/src/Radec.cpp @@ -8,7 +8,7 @@ int main() { string fileName; Simulation e; - getline(in, fileName); + getline(cin, fileName); e.parseCircuit(fileName); // 2. Parse the vector file to initialize the simulation Queue with initial @@ -24,5 +24,4 @@ int main() { // 4. Print the results of the simulation e.print(); - } }