-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
break clang-tidy #30
base: main
Are you sure you want to change the base?
break clang-tidy #30
Conversation
08a099f
to
823be0b
Compare
60139bd
to
6ed9bbd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy
found issue(s) with the introduced code (1/1)
columns[kColumnModule] = {"Module", .0f, SortingOrder::kAscending}; | ||
columns[kColumnAddress] = {"Sampled Address", .0f, SortingOrder::kAscending}; | ||
return columns; | ||
std::vector<Column> resultingColumns_; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalid case style for local variable resultingColumns_
std::vector<Column> resultingColumns_; | |
std::vector<Column> resulting_columns; |
columns[kColumnAddress] = {"Sampled Address", .0f, SortingOrder::kAscending}; | ||
return columns; | ||
std::vector<Column> resultingColumns_; | ||
resultingColumns_.resize(kNumColumns); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalid case style for local variable resultingColumns_
resultingColumns_.resize(kNumColumns); | |
resulting_columns.resize(kNumColumns); |
return columns; | ||
std::vector<Column> resultingColumns_; | ||
resultingColumns_.resize(kNumColumns); | ||
resultingColumns_[kColumnSelected] = {"Hooked", .0f, SortingOrder::kDescending}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalid case style for local variable resultingColumns_
resultingColumns_[kColumnSelected] = {"Hooked", .0f, SortingOrder::kDescending}; | |
resulting_columns[kColumnSelected] = {"Hooked", .0f, SortingOrder::kDescending}; |
std::vector<Column> resultingColumns_; | ||
resultingColumns_.resize(kNumColumns); | ||
resultingColumns_[kColumnSelected] = {"Hooked", .0f, SortingOrder::kDescending}; | ||
resultingColumns_[kColumnName] = {"Function", .65f, SortingOrder::kAscending}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalid case style for local variable resultingColumns_
resultingColumns_[kColumnName] = {"Function", .65f, SortingOrder::kAscending}; | |
resulting_columns[kColumnName] = {"Function", .65f, SortingOrder::kAscending}; |
resultingColumns_.resize(kNumColumns); | ||
resultingColumns_[kColumnSelected] = {"Hooked", .0f, SortingOrder::kDescending}; | ||
resultingColumns_[kColumnName] = {"Function", .65f, SortingOrder::kAscending}; | ||
resultingColumns_[kColumnSize] = {"Size", .0f, SortingOrder::kAscending}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalid case style for local variable resultingColumns_
resultingColumns_[kColumnSize] = {"Size", .0f, SortingOrder::kAscending}; | |
resulting_columns[kColumnSize] = {"Size", .0f, SortingOrder::kAscending}; |
resultingColumns_[kColumnSelected] = {"Hooked", .0f, SortingOrder::kDescending}; | ||
resultingColumns_[kColumnName] = {"Function", .65f, SortingOrder::kAscending}; | ||
resultingColumns_[kColumnSize] = {"Size", .0f, SortingOrder::kAscending}; | ||
resultingColumns_[kColumnModule] = {"Module", .0f, SortingOrder::kAscending}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalid case style for local variable resultingColumns_
resultingColumns_[kColumnModule] = {"Module", .0f, SortingOrder::kAscending}; | |
resulting_columns[kColumnModule] = {"Module", .0f, SortingOrder::kAscending}; |
resultingColumns_[kColumnName] = {"Function", .65f, SortingOrder::kAscending}; | ||
resultingColumns_[kColumnSize] = {"Size", .0f, SortingOrder::kAscending}; | ||
resultingColumns_[kColumnModule] = {"Module", .0f, SortingOrder::kAscending}; | ||
resultingColumns_[kColumnAddress] = {"Sampled Address", .0f, SortingOrder::kAscending}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalid case style for local variable resultingColumns_
resultingColumns_[kColumnAddress] = {"Sampled Address", .0f, SortingOrder::kAscending}; | |
resulting_columns[kColumnAddress] = {"Sampled Address", .0f, SortingOrder::kAscending}; |
resultingColumns_[kColumnSize] = {"Size", .0f, SortingOrder::kAscending}; | ||
resultingColumns_[kColumnModule] = {"Module", .0f, SortingOrder::kAscending}; | ||
resultingColumns_[kColumnAddress] = {"Sampled Address", .0f, SortingOrder::kAscending}; | ||
return resultingColumns_; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalid case style for local variable resultingColumns_
return resultingColumns_; | |
return resulting_columns; |
No description provided.