Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions llvm/include/llvm/Support/SpecialCaseList.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,13 @@ class SpecialCaseList {

Section(Section &&) = default;

// Return name of the section, its entire string in [].
// Returns name of the section, its entire string in [].
StringRef name() const { return SectionStr; }

// Returns true if string 'Name' matches section name interpreted as a glob.
LLVM_ABI bool matchName(StringRef Name) const;

// Return sequence number of the file where this section is defined.
// Returns sequence number of the file where this section is defined.
unsigned fileIndex() const { return FileIdx; }

// Helper method to search by Prefix, Query, and Category. Returns
Expand Down
Loading