We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9910a2 commit 1b2a956Copy full SHA for 1b2a956
llvm/include/llvm/Support/SpecialCaseList.h
@@ -164,6 +164,8 @@ class SpecialCaseList {
164
public:
165
LLVM_ABI Matcher(bool UseGlobs, bool RemoveDotSlash);
166
167
+ LLVM_ABI Error insert(StringRef Pattern, unsigned LineNumber);
168
+
169
LLVM_ABI void
170
match(StringRef Query,
171
llvm::function_ref<void(StringRef Rule, unsigned LineNo)> Cb) const;
@@ -174,8 +176,6 @@ class SpecialCaseList {
174
176
return R;
175
177
}
178
- LLVM_ABI Error insert(StringRef Pattern, unsigned LineNumber);
-
179
std::variant<RegexMatcher, GlobMatcher> M;
180
bool RemoveDotSlash;
181
};
0 commit comments