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 b0e2be9 commit 7de9bbaCopy full SHA for 7de9bba
bolt/Passes/BinaryPasses.h
@@ -71,7 +71,7 @@ class DynoStatsPrintPass : public BinaryFunctionPass {
71
, Title(Title) {
72
}
73
74
- const char *getName() const {
+ const char *getName() const override {
75
return "print dyno-stats after optimizations";
76
77
bolt/Passes/HFSortPlus.cpp
@@ -116,10 +116,7 @@ class AdjacencyMatrix {
116
117
void dump(const Cluster *A) const {
118
outs() << "Cluster " << A->id() << ":";
119
- forallAdjacent(A,
120
- [this,A](const Cluster *B) {
121
- outs() << " " << B->id();
122
- });
+ forallAdjacent(A, [](const Cluster *B) { outs() << " " << B->id(); });
123
124
125
void dump() const {
0 commit comments