mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 19:08:21 +08:00
[NFC] mark DebugCounter::Chunk method as const (#143039)
This commit is contained in:
@@ -60,7 +60,7 @@ public:
|
||||
int64_t Begin;
|
||||
int64_t End;
|
||||
LLVM_ABI void print(llvm::raw_ostream &OS);
|
||||
bool contains(int64_t Idx) { return Idx >= Begin && Idx <= End; }
|
||||
bool contains(int64_t Idx) const { return Idx >= Begin && Idx <= End; }
|
||||
};
|
||||
|
||||
LLVM_ABI static void printChunks(raw_ostream &OS, ArrayRef<Chunk>);
|
||||
|
||||
Reference in New Issue
Block a user