Skip to content

Commit

Permalink
filter -y files
Browse files Browse the repository at this point in the history
  • Loading branch information
alaindargelas committed Oct 13, 2023
1 parent b9742f7 commit fdede92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/SourceCompile/Compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ bool Compiler::ppinit_() {
if (std::regex_search(buffer.str(), regexpMod)) {
fileContainsModuleOfSameName = true;
}
const std::regex regexpPrim{"(primitive)[ ]+(" + moduleName + ")"};
const std::regex regexpPrim{"(primitive)[ ]+(" + moduleName +
")"};
if (std::regex_search(buffer.str(), regexpPrim)) {
fileContainsModuleOfSameName = true;
}
Expand Down

0 comments on commit fdede92

Please sign in to comment.