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 7d344e7 commit 070f2adCopy full SHA for 070f2ad
llvm/include/llvm/Support/DebugCounter.h
@@ -59,7 +59,7 @@ class DebugCounter {
59
struct Chunk {
60
int64_t Begin;
61
int64_t End;
62
- LLVM_ABI void print(llvm::raw_ostream &OS) const;
+ LLVM_ABI void print(llvm::raw_ostream &OS);
63
bool contains(int64_t Idx) const { return Idx >= Begin && Idx <= End; }
64
};
65
llvm/lib/Support/DebugCounter.cpp
@@ -9,7 +9,7 @@ using namespace llvm;
9
10
namespace llvm {
11
12
-void DebugCounter::Chunk::print(llvm::raw_ostream &OS) const {
+void DebugCounter::Chunk::print(llvm::raw_ostream &OS) {
13
if (Begin == End)
14
OS << Begin;
15
else
0 commit comments