-
-
Notifications
You must be signed in to change notification settings - Fork 686
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
Move empty member function definitions from "itk*.hxx" to "itk*.h" #5198
Merged
jhlegarreta
merged 2 commits into
InsightSoftwareConsortium:master
from
N-Dekker:Move-empty-member-function-definitions-to-h
Jan 30, 2025
Merged
Move empty member function definitions from "itk*.hxx" to "itk*.h" #5198
jhlegarreta
merged 2 commits into
InsightSoftwareConsortium:master
from
N-Dekker:Move-empty-member-function-definitions-to-h
Jan 30, 2025
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
Found by regular expression `::.+\(\)\r\n{}` in "itk*.hxx" files Suggested by Denis Shamonin.
Moved the member function definitions of member functions that have an empty parameter list and an empty member function definition from their "itk*.hxx" file to the corresponding "itk*.h" file, and into their class definition. Found by regular expression `::.+\(\)\r\n{}` in "itk*.hxx" files. Suggested by Denis Shamonin.
53eb106
to
b94770d
Compare
dzenanz
approved these changes
Jan 29, 2025
The test failure of itkConvolutionImageFilterStreamingValidTest at https://open.cdash.org/viewTest.php?onlyfailed&buildid=10177192 looks unrelated to me. It says:
|
/azp run ITK.Windows |
b87a8b0
into
InsightSoftwareConsortium:master
15 checks passed
N-Dekker
added a commit
to N-Dekker/ITK
that referenced
this pull request
Feb 1, 2025
Moved the member function definitions of member functions that have an empty member function definition from their "itk*.hxx" file to the corresponding "itk*.h" file, and into their class definition. Found by regular expression `^..[^:,].+\)\r\n{}` in "itk*.hxx" files. - Follow-up to pull request InsightSoftwareConsortium#5198 commit b94770d "STYLE: Move empty member functions with empty param list from .hxx to .h"
N-Dekker
added a commit
to N-Dekker/ITK
that referenced
this pull request
Feb 3, 2025
Moved the member function definitions of member functions that have an empty member function definition from their "itk*.hxx" file to the corresponding "itk*.h" file, and into their class definition. Found by regular expression `^..[^:,].+\)\r\n{}` in "itk*.hxx" files. - Follow-up to pull request InsightSoftwareConsortium#5198 commit b94770d "STYLE: Move empty member functions with empty param list from .hxx to .h"
N-Dekker
added a commit
to N-Dekker/ITK
that referenced
this pull request
Feb 3, 2025
Moved the member function definitions of member functions that have an empty member function definition from their "itk*.hxx" file to the corresponding "itk*.h" file, and into their class definition. Found by regular expression `^..[^:,].+\)\r\n{}` in "itk*.hxx" files. - Follow-up to pull request InsightSoftwareConsortium#5198 commit b94770d "STYLE: Move empty member functions with empty param list from .hxx to .h"
N-Dekker
added a commit
to N-Dekker/ITK
that referenced
this pull request
Feb 3, 2025
Moved the member function definitions of member functions that have an empty member function definition from their "itk*.hxx" file to the corresponding "itk*.h" file, and into their class definition. Found by regular expression `^..[^:,].+\)\r\n{}` in "itk*.hxx" files. - Follow-up to pull request InsightSoftwareConsortium#5198 commit b94770d "STYLE: Move empty member functions with empty param list from .hxx to .h"
dzenanz
pushed a commit
that referenced
this pull request
Feb 4, 2025
Moved the member function definitions of member functions that have an empty member function definition from their "itk*.hxx" file to the corresponding "itk*.h" file, and into their class definition. Found by regular expression `^..[^:,].+\)\r\n{}` in "itk*.hxx" files. - Follow-up to pull request #5198 commit b94770d "STYLE: Move empty member functions with empty param list from .hxx to .h"
N-Dekker
added a commit
to N-Dekker/ITK
that referenced
this pull request
Feb 6, 2025
Moved the member function definitions of `const`member functions that have an empty member function definition from their "itk*.hxx" file to the corresponding "itk*.h" file, and into their class definition. Found by regular expression `^..[^:,].+\) const\r\n{}` in "itk*.hxx" files. - Follow-up to pull request InsightSoftwareConsortium#5198 commit b94770d "STYLE: Move empty member functions with empty param list from .hxx to .h"
dzenanz
pushed a commit
that referenced
this pull request
Feb 7, 2025
Moved the member function definitions of `const`member functions that have an empty member function definition from their "itk*.hxx" file to the corresponding "itk*.h" file, and into their class definition. Found by regular expression `^..[^:,].+\) const\r\n{}` in "itk*.hxx" files. - Follow-up to pull request #5198 commit b94770d "STYLE: Move empty member functions with empty param list from .hxx to .h"
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:Filtering
Issues affecting the Filtering module
area:Numerics
Issues affecting the Numerics module
area:Segmentation
Issues affecting the Segmentation module
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.
Moved the member function definitions of member functions that have an empty
parameter list and an empty member function definition from their "itk*.hxx"
file to the corresponding "itk*.h" file, and into their class definition.
Defaulted the default-constructor of
PyImageFilter
.Found by regular expression
::.+\(\)\r\n{}
in "itk*.hxx" files.Suggested by Denis Shamonin (@dpshamonin).