Skip to content
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 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, it's entire string in [].
StringRef name() const { return SectionStr; }

// Returns true if string 'Name' matches section name interpreted as a glob.
// Returns true of 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