-
Notifications
You must be signed in to change notification settings - Fork 28
Cleanup #279
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
base: develop
Are you sure you want to change the base?
Cleanup #279
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,11 +11,7 @@ | |
| // File Loader.h | ||
| // Baudouin Raoult - ECMWF Jul 96 | ||
|
|
||
| #ifndef eckit_Loader_h | ||
| #define eckit_Loader_h | ||
|
|
||
| #include "eckit/eckit.h" | ||
|
|
||
| #pragma once | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since we are touching all files, it would be nice to have a consistent spacing (my suggestion would be to consistently have an empty line before and an empty line after
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hmm don't want to bother with it because I would need to code a manual check for it. clang-format does not support it and without a check it will deteriorate quickly again. Although I agree it would look nicer. |
||
| #include "eckit/container/ClassExtent.h" | ||
|
|
||
| //----------------------------------------------------------------------------- | ||
|
|
@@ -41,5 +37,3 @@ class Loader : public ClassExtent<Loader> { | |
| //----------------------------------------------------------------------------- | ||
|
|
||
| } // namespace eckit | ||
|
|
||
| #endif | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,7 @@ | |
|
|
||
| #include "eckit/cmd/Arg.h" | ||
|
|
||
| #include <cstddef> | ||
| #include <iostream> | ||
|
|
||
| namespace eckit { | ||
|
|
||
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.
I really like the idea of grouping the eckit headers, and make them the first group! 👍🏼