Skip to content

Commit 070f2ad

Browse files
committed
update
Created using spr 1.3.4
1 parent 7d344e7 commit 070f2ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/include/llvm/Support/DebugCounter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class DebugCounter {
5959
struct Chunk {
6060
int64_t Begin;
6161
int64_t End;
62-
LLVM_ABI void print(llvm::raw_ostream &OS) const;
62+
LLVM_ABI void print(llvm::raw_ostream &OS);
6363
bool contains(int64_t Idx) const { return Idx >= Begin && Idx <= End; }
6464
};
6565

llvm/lib/Support/DebugCounter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ using namespace llvm;
99

1010
namespace llvm {
1111

12-
void DebugCounter::Chunk::print(llvm::raw_ostream &OS) const {
12+
void DebugCounter::Chunk::print(llvm::raw_ostream &OS) {
1313
if (Begin == End)
1414
OS << Begin;
1515
else

0 commit comments

Comments
 (0)