Fixed #2169 (Inline suppression does not work unless filename is given)
This commit is contained in:
parent
21ec772e31
commit
6a4f70e496
|
@ -125,7 +125,8 @@ void FileListerWin32::recursiveAddFiles(std::vector<std::string> &filenames, con
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
oss << "\\*";
|
oss << "\\*";
|
||||||
bdir << cleanedPath << '\\';
|
if (cleanedPath != ".")
|
||||||
|
bdir << cleanedPath << '\\';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue