-
-
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
Deprecate ...CoordRepType
and replace them with ...CoordinateType
#5006
Deprecate ...CoordRepType
and replace them with ...CoordinateType
#5006
Conversation
Follow-up to pull request InsightSoftwareConsortium#4997 commit 5ea1a9a "ENH: Add nested CoordinateType aliases as alternative to CoordRepType"
Follow-up to pull request InsightSoftwareConsortium#4997 commit 324eaf1 "STYLE: Replace CoordRepType with CoordinateType in tests"
Follow-up to pull request InsightSoftwareConsortium#4997 commit 15d189f "STYLE: Replace CoordRepType with CoordinateType in ITK implementation"
Also, in order to build it against ITK 5.x, do we need to put some ifdefs there? This probably applies to other user code - ITK5/6 ifdef, or turn on legacy. Should we document this in the migration guide? |
Follow-up to pull request InsightSoftwareConsortium#4997 commit e667fa3 "ENH: Deprecate (FUTURE REMOVE) CoordRepType in favor of CoordinateType"
9efee43
to
80dad29
Compare
Thanks @dzenanz First of all, none of these changes should trigger a compile error on any user code, except when Was Montage built with or without legacy support? If it was built with legacy support ( Indeed, a note should be added to the migration guide. Thanks for reminding me 😃 I can make a PR to do so, right after this one (#5006) is merged. |
Yes, legacy was turned off. You can see the full configuration here: |
Redid pull request InsightSoftwareConsortium#5006 commit fbe9b04 on release-5.4.
Addressed the warnings at https://open.cdash.org/viewBuildError.php?type=1&buildid=10063093 reported by Dženan Zukić at InsightSoftwareConsortium/ITK#5006 (comment) Following ITK pull request InsightSoftwareConsortium/ITK#4997 commit InsightSoftwareConsortium/ITK@e667fa3
@dzenanz Proposed note:
(I'm not yet able to make it a pull request, because my clang-format isn't yet properly installed/configured.) |
Added note about `CoordRepType` being replaced with `CoordinateType`. Follow-up to: - pull request InsightSoftwareConsortium#5006 commit a68b8f6 "ENH: FUTURE REMOVE `...CoordRepType` in favor of `...CoordinateType`" - pull request InsightSoftwareConsortium#4997 commit e667fa3 "ENH: Deprecate (FUTURE REMOVE) CoordRepType in favor of CoordinateType"
Triggered by a comment from Hans (@hjmjohnson) at #4999 (review)
CoordRepType
and replace it withCoordinateType
#4997