-
-
Notifications
You must be signed in to change notification settings - Fork 671
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
Prefer cxx modern names directly #4703
Closed
hjmjohnson
wants to merge
13
commits into
InsightSoftwareConsortium:master
from
hjmjohnson:prefer-cxx-modern-names-directly
Closed
Prefer cxx modern names directly #4703
hjmjohnson
wants to merge
13
commits into
InsightSoftwareConsortium:master
from
hjmjohnson:prefer-cxx-modern-names-directly
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hjmjohnson
added
the
type:Style
Style changes: no logic impact (indentation, comments, naming)
label
May 31, 2024
github-actions
bot
added
type:Infrastructure
Infrastructure/ecosystem related changes, such as CMake or buildbots
type:Testing
Ensure that the purpose of a class is met/the results on a wide set of test cases are correct
area:Core
Issues affecting the Core module
area:Filtering
Issues affecting the Filtering module
area:Registration
Issues affecting the Registration module
area:Segmentation
Issues affecting the Segmentation module
area:Video
Issues affecting the Video module
area:Numerics
Issues affecting the Numerics module
area:Remotes
Issues affecting the Remote module
area:Documentation
Issues affecting the Documentation module
area:IO
Issues affecting the IO module
and removed
type:Style
Style changes: no logic impact (indentation, comments, naming)
labels
May 31, 2024
dzenanz
reviewed
May 31, 2024
@@ -36,18 +36,9 @@ | |||
#include <type_traits> // For conditional and integral_constant. | |||
#include <utility> // For tuple_element and tuple_size. | |||
|
|||
// Macro added to each `ImageRegion` member function that overrides a virtual member function of `Region`, when legacy |
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.
@N-Dekker did you change legacy level for this recently?
The non-const API variants are no longer supported at compiletime. Replace 'ITKv5_CONST' with 'const'.
ITKv4 compile time API support is removed.
Use initialization rather than assignment in the constructor.
Remove ITK aliases for language features that are no longer optional.
These long-time legacy interfaces are no longer supported in ITKv6.
Remove Macro added to each `ImageRegion` member function that overrides a virtual member function of `Region`, when legacy support is enabled. Without legacy support, `ImageRegion` will no longer inherit from `Region`, so then those `ImageRegion` member functions will no longer override.
hjmjohnson
force-pushed
the
prefer-cxx-modern-names-directly
branch
from
June 1, 2024 01:20
03c1c48
to
02c577c
Compare
After reading discussions on #4693 deciding not to pursue this in it's present form. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area:Core
Issues affecting the Core module
area:Documentation
Issues affecting the Documentation module
area:Filtering
Issues affecting the Filtering module
area:IO
Issues affecting the IO module
area:Numerics
Issues affecting the Numerics module
area:Registration
Issues affecting the Registration module
area:Remotes
Issues affecting the Remote module
area:Segmentation
Issues affecting the Segmentation module
type:Infrastructure
Infrastructure/ecosystem related changes, such as CMake or buildbots
type:Testing
Ensure that the purpose of a class is met/the results on a wide set of test cases are correct
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Remove legacy API's
PR Checklist