STYLE: Remove space between class and member names (follow-up)#3664
Merged
dzenanz merged 1 commit intoInsightSoftwareConsortium:masterfrom Sep 27, 2022
Conversation
dzenanz
approved these changes
Sep 26, 2022
Removed spaces between class and member names, that were accidentally introduced with pull request InsightSoftwareConsortium#1191 commit 2074c2f "STYLE: Enforce ITK style defined by .clang-format". Using bash commands like: find . \( -iname *.cxx \) -exec perl -pi -w -e 's/([A-Z]\w+) \:\:(\w)/$1::$2/g;' {} \; Follow-up to pull request InsightSoftwareConsortium#2096 commit 734d6f8 "STYLE: Remove space between class and member names in C++ source files"
44452c1 to
1c9d360
Compare
IO :: in "itk*IO.cxx" files
dzenanz
approved these changes
Sep 26, 2022
blowekamp
reviewed
Sep 28, 2022
| // this will be changed if we're reading a file to whatever | ||
| // the file actually contains. | ||
| if (ByteSwapper<int>::SystemIsBigEndian()) | ||
| iff(ByteSwapper<int>::SystemIsBigEndian()) |
Contributor
Author
There was a problem hiding this comment.
First, I'll switch on Module_ITKIOPhilipsREC, to avoid introducing more silly mistakes!
N-Dekker
added a commit
to N-Dekker/ITK
that referenced
this pull request
Sep 28, 2022
Fixed a compile error, which appeared when enabling `Module_ITKIOPhilipsREC`: > itkPhilipsRECImageIO.cxx(390,3): error C3861: 'iff': identifier not found This obvious typo was introduced with pull request InsightSoftwareConsortium#3664 commit 2b1b531 "STYLE: Remove space between class and member names (follow-up)", and reported by Bradley Lowekamp.
N-Dekker
added a commit
to N-Dekker/ITK
that referenced
this pull request
Sep 28, 2022
Fixed a compile error, which appeared when enabling `Module_ITKIOPhilipsREC`: > itkPhilipsRECImageIO.cxx(390,3): error C3861: 'iff': identifier not found This obvious typo was introduced with pull request InsightSoftwareConsortium#3664 commit 2b1b531 "STYLE: Remove space between class and member names (follow-up)", and reported by Bradley Lowekamp.
N-Dekker
added a commit
to N-Dekker/ITK
that referenced
this pull request
Sep 28, 2022
Fixed a compile error, which appeared when enabling `Module_ITKIOPhilipsREC`: > itkPhilipsRECImageIO.cxx(390,3): error C3861: 'iff': identifier not found This obvious typo was introduced with pull request InsightSoftwareConsortium#3664 commit 2b1b531 "STYLE: Remove space between class and member names (follow-up)", and reported by Bradley Lowekamp.
N-Dekker
added a commit
that referenced
this pull request
Sep 28, 2022
Fixed a compile error, which appeared when enabling `Module_ITKIOPhilipsREC`: > itkPhilipsRECImageIO.cxx(390,3): error C3861: 'iff': identifier not found This obvious typo was introduced with pull request #3664 commit 2b1b531 "STYLE: Remove space between class and member names (follow-up)", and reported by Bradley Lowekamp.
hjmjohnson
pushed a commit
to hjmjohnson/ITK
that referenced
this pull request
May 6, 2026
Fixed a compile error, which appeared when enabling `Module_ITKIOPhilipsREC`: > itkPhilipsRECImageIO.cxx(390,3): error C3861: 'iff': identifier not found This obvious typo was introduced with pull request InsightSoftwareConsortium#3664 commit 18e63a4 "STYLE: Remove space between class and member names (follow-up)", and reported by Bradley Lowekamp.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Removed spaces between class and member names, that were
accidentally introduced with pull request #1191
commit 2074c2f "STYLE: Enforce ITK style
defined by .clang-format".
Using bash commands like:
Follow-up to pull request #2096
commit 734d6f8 "STYLE: Remove space between
class and member names in C++ source files"