-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix(Headers): change extension convention from .h to .hpp #132
Conversation
BREAKING CHANGE: rename all extensions from .h to.hpp
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
There were too many comments to post at once. Showing the first 25 out of 98. Check the log or trigger a new build to see more.
@@ -21,9 +21,9 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/basic/attribute_manager.h> | |||
#include <geode/basic/attribute_manager.hpp> |
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: 'geode/basic/attribute_manager.hpp' file not found [clang-diagnostic-error]
#include <geode/basic/attribute_manager.hpp>
^
@@ -21,22 +21,22 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/basic/attribute_manager.h> | |||
#include <geode/basic/attribute_manager.hpp> |
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: 'geode/basic/attribute_manager.hpp' file not found [clang-diagnostic-error]
#include <geode/basic/attribute_manager.hpp>
^
@@ -21,9 +21,9 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/mixin/core/fault_block.h> | |||
#include <geode/geosciences/explicit/mixin/core/fault_block.hpp> |
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: 'geode/geosciences/explicit/mixin/core/fault_block.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/mixin/core/fault_block.hpp>
^
@@ -21,9 +21,9 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/mixin/core/fault.h> | |||
#include <geode/geosciences/explicit/mixin/core/fault.hpp> |
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: 'geode/geosciences/explicit/mixin/core/fault.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/mixin/core/fault.hpp>
^
@@ -21,9 +21,9 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/mixin/core/horizon.h> | |||
#include <geode/geosciences/explicit/mixin/core/horizon.hpp> |
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: 'geode/geosciences/explicit/mixin/core/horizon.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/mixin/core/horizon.hpp>
^
@@ -21,7 +21,7 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/implicit/mixin/builder/stratigraphic_relationships_builder.h> | |||
#include <geode/geosciences/implicit/mixin/builder/stratigraphic_relationships_builder.hpp> |
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: 'geode/geosciences/implicit/mixin/builder/stratigraphic_relationships_builder.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/mixin/builder/stratigraphic_relationships_builder.hpp>
^
@@ -21,7 +21,7 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/implicit/mixin/core/stratigraphic_relationships.h> | |||
#include <geode/geosciences/implicit/mixin/core/stratigraphic_relationships.hpp> |
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: 'geode/geosciences/implicit/mixin/core/stratigraphic_relationships.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/mixin/core/stratigraphic_relationships.hpp>
^
@@ -21,11 +21,11 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/implicit/representation/builder/horizons_stack_builder.h> | |||
#include <geode/geosciences/implicit/representation/builder/horizons_stack_builder.hpp> |
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: 'geode/geosciences/implicit/representation/builder/horizons_stack_builder.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/builder/horizons_stack_builder.hpp>
^
@@ -21,9 +21,9 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/implicit/representation/builder/implicit_cross_section_builder.h> | |||
#include <geode/geosciences/implicit/representation/builder/implicit_cross_section_builder.hpp> |
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: 'geode/geosciences/implicit/representation/builder/implicit_cross_section_builder.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/builder/implicit_cross_section_builder.hpp>
^
@@ -21,9 +21,9 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/implicit/representation/builder/implicit_structural_model_builder.h> | |||
#include <geode/geosciences/implicit/representation/builder/implicit_structural_model_builder.hpp> |
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: 'geode/geosciences/implicit/representation/builder/implicit_structural_model_builder.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/implicit/representation/builder/implicit_structural_model_builder.hpp>
^
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
There were too many comments to post at once. Showing the first 25 out of 64. Check the log or trigger a new build to see more.
@@ -21,17 +21,17 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/basic/common.h> | |||
#include <geode/basic/logger.h> | |||
#include <geode/basic/common.hpp> |
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: 'geode/basic/common.hpp' file not found [clang-diagnostic-error]
#include <geode/basic/common.hpp>
^
@@ -21,15 +21,15 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/geometry/geographic_coordinate_system.h> | |||
#include <geode/geosciences/explicit/geometry/geographic_coordinate_system.hpp> |
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: 'geode/geosciences/explicit/geometry/geographic_coordinate_system.hpp' file not found [clang-diagnostic-error]
SOFTWARE.
^
@@ -21,30 +21,30 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.h> | |||
#include <geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.hpp> |
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: 'geode/geosciences/explicit/geometry/geographic_coordinate_system_helper.hpp' file not found [clang-diagnostic-error]
SOFTWARE.
^
@@ -21,10 +21,10 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/mixin/builder/fault_blocks_builder.h> | |||
#include <geode/geosciences/explicit/mixin/builder/fault_blocks_builder.hpp> |
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: 'geode/geosciences/explicit/mixin/builder/fault_blocks_builder.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/mixin/builder/fault_blocks_builder.hpp>
^
@@ -21,10 +21,10 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/mixin/builder/faults_builder.h> | |||
#include <geode/geosciences/explicit/mixin/builder/faults_builder.hpp> |
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: 'geode/geosciences/explicit/mixin/builder/faults_builder.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/mixin/builder/faults_builder.hpp>
^
@@ -21,12 +21,12 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/representation/core/structural_model.h> | |||
#include <geode/geosciences/explicit/representation/core/structural_model.hpp> |
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: 'geode/geosciences/explicit/representation/core/structural_model.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/representation/core/structural_model.hpp>
^
@@ -21,19 +21,19 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/representation/io/cross_section_input.h> | |||
#include <geode/geosciences/explicit/representation/io/cross_section_input.hpp> |
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: 'geode/geosciences/explicit/representation/io/cross_section_input.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/representation/io/cross_section_input.hpp>
^
@@ -21,19 +21,19 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/representation/io/cross_section_output.h> | |||
#include <geode/geosciences/explicit/representation/io/cross_section_output.hpp> |
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: 'geode/geosciences/explicit/representation/io/cross_section_output.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/representation/io/cross_section_output.hpp>
^
@@ -21,26 +21,26 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/representation/io/geode/geode_cross_section_input.h> | |||
#include <geode/geosciences/explicit/representation/io/geode/geode_cross_section_input.hpp> |
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: 'geode/geosciences/explicit/representation/io/geode/geode_cross_section_input.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/representation/io/geode/geode_cross_section_input.hpp>
^
@@ -21,7 +21,7 @@ | |||
* | |||
*/ | |||
|
|||
#include <geode/geosciences/explicit/representation/io/geode/geode_cross_section_output.h> | |||
#include <geode/geosciences/explicit/representation/io/geode/geode_cross_section_output.hpp> |
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: 'geode/geosciences/explicit/representation/io/geode/geode_cross_section_output.hpp' file not found [clang-diagnostic-error]
#include <geode/geosciences/explicit/representation/io/geode/geode_cross_section_output.hpp>
^
🎉 This PR is included in version 8.0.0-rc.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 8.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
BREAKING CHANGE: rename all extensions from .h to.hpp