We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 811479e commit 9960288Copy full SHA for 9960288
1 file changed
lib/utils.cpp
@@ -44,7 +44,7 @@ bool isValidGlobPattern(const std::string& pattern)
44
for (auto i = pattern.cbegin(); i != pattern.cend(); ++i) {
45
if (*i == '*') {
46
++consecutiveAsterisks;
47
- if ( consecutiveAsterisks > 2 ) {
+ if (consecutiveAsterisks > 2) {
48
return false;
49
}
50
} else if (*i == '?') {
0 commit comments