Apr 23, 2013 at 10:56pm
Remove line 17 (inFile.open("Text.txt");) and it will work as expected.
You could also construct your vector directly: vector<string> store(in_iter, eof);
Apr 24, 2013 at 7:36am
That was simpler than expected =p. Thanks Cubbi for that and the tip.