-
Notifications
You must be signed in to change notification settings - Fork 3
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
should post lgtm #10
base: master
Are you sure you want to change the base?
should post lgtm #10
Conversation
clang-tidy review says "All clean, LGTM! 👍" |
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 made some suggestions
src/main.cpp
Outdated
|
||
void anotherFunction() | ||
{ | ||
auto test = new std::string; // :) |
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.
warning: 'auto test' can be declared as 'auto *test' [llvm-qualified-auto]
auto test = new std::string; // :) | |
auto *test = new std::string; // :) |
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 made some suggestions
|
||
void anotherFunction() | ||
{ | ||
auto test = new std::string; // :) |
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.
warning: 'auto test' can be declared as 'auto *test' [llvm-qualified-auto]
auto test = new std::string; // :) | |
auto *test = new std::string; // :) |
void anotherFunction() | ||
{ | ||
auto test = new std::string; // :) | ||
auto test2 = new std::string; // :) |
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.
warning: 'auto test2' can be declared as 'auto *test2' [llvm-qualified-auto]
auto test2 = new std::string; // :) | |
auto *test2 = new std::string; // :) |
No description provided.