Skip to content

Commit

Permalink
Merge pull request #14 from JustinShetty/master
Browse files Browse the repository at this point in the history
don't capture headers as part of solution
  • Loading branch information
Kei18 committed May 22, 2024
2 parents 6bffc95 + 4ee9a93 commit c3c1314
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ int main(int argc, char *argv[])
std::string line;
std::smatch m, results;
while (getline(solution_file, line)) {
// so we only process real solution lines
if(line.find(":(") == std::string::npos) continue;

auto iter = line.cbegin();
Config c;
while (iter < line.cend()) {
Expand Down

0 comments on commit c3c1314

Please sign in to comment.