Removed print statement

This commit is contained in:
Thomas Avé 2017-01-20 22:04:52 +01:00
parent 02454f5f7a
commit 1b54354d09
1 changed files with 0 additions and 1 deletions

View File

@ -19,7 +19,6 @@ namespace input {
std::set<std::string> tokens;
for(auto line: lines) {
tokens.insert(line.second.first);
std::cout << line.second.first << std::endl;
}
return tokens;
}