-
Notifications
You must be signed in to change notification settings - Fork 31
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
[cmake] Enumerate all source and include files. #44
[cmake] Enumerate all source and include files. #44
Conversation
0d90e5e
to
f0ac8e9
Compare
clang-tidy review says "All clean, LGTM! 👍" |
f0ac8e9
to
970bbd8
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #44 +/- ##
==========================================
- Coverage 49.32% 46.98% -2.35%
==========================================
Files 13 15 +2
Lines 742 779 +37
==========================================
Hits 366 366
- Misses 376 413 +37
... and 1 file with indirect coverage changes
|
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/xmagics/os.cpp
Outdated
namespace xcpp | ||
{ | ||
argparser writefile::get_options() | ||
void writefile::get_options(argparser &argpars) |
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: method 'get_options' can be made static [readability-convert-member-functions-to-static]
src/xmagics/os.hpp:22:
- void get_options(argparser& argpars);
+ static void get_options(argparser& argpars);
970bbd8
to
562edb6
Compare
562edb6
to
2aa7764
Compare
clang-tidy review says "All clean, LGTM! 👍" |
This is part of reducing the size of #14.