Commit f81db68e authored by jon-tow's avatar jon-tow
Browse files

Fix undeclared identifier error

parent 8d5b116c
...@@ -176,7 +176,7 @@ clean_ngram_with_indices(std::string const &input, std::string const &ignore, ...@@ -176,7 +176,7 @@ clean_ngram_with_indices(std::string const &input, std::string const &ignore,
} }
// Skip ignored characters // Skip ignored characters
} else if (ignore.find(*iter) != std::string::npos) { } else if (ignore.find(ch) != std::string::npos) {
continue; continue;
// If it is a non-ignored character, add it to the ngram and update the // If it is a non-ignored character, add it to the ngram and update the
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment