Merged
Conversation
C++14 is a small extension over C++11, featuring mainly bug fixes and small improvements: https://en.wikipedia.org/wiki/C%2B%2B14 This commit follows ITK pull request InsightSoftwareConsortium/ITK#2563 commit InsightSoftwareConsortium/ITK@daec0fd "ENH: Upgrade ITK from C++11 to C++14" (1 June 2021). Follow-up to pull request #123 commit b84ab47 "ENH: Explicitly set CMAKE_CXX_STANDARD to 11", by Kasper Marstal, 8 March 2019
Member
|
lgtm |
According to Clang-Tidy modernize-make-unique: https://clang.llvm.org/extra/clang-tidy/checks/modernize-make-unique.html C++ Core Guidelines, August 19, 2021, R.23: Use make_unique() to make unique_ptrs http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rr-make_unique Following ITK pull request InsightSoftwareConsortium/ITK#2574 commit InsightSoftwareConsortium/ITK@22bce72 (4 June 2021)
64f4e52 to
be1c21c
Compare
N-Dekker
added a commit
that referenced
this pull request
Mar 24, 2023
Following ITK pull request InsightSoftwareConsortium/ITK#3969 "ENH: Upgrade ITK from C++14 to C++17" Follow-up to pull request #513 commit d98d9c0 "ENH: Upgrade elastix from C++11 to C++14".
N-Dekker
added a commit
that referenced
this pull request
Apr 2, 2023
Following ITK pull request InsightSoftwareConsortium/ITK#3969 commit InsightSoftwareConsortium/ITK@513507e "ENH: Upgrade ITK from C++14 to C++17" Follow-up to pull request #513 commit d98d9c0 "ENH: Upgrade elastix from C++11 to C++14".
N-Dekker
added a commit
that referenced
this pull request
Apr 3, 2023
Following ITK pull request InsightSoftwareConsortium/ITK#3969 commit InsightSoftwareConsortium/ITK@513507e "ENH: Upgrade ITK from C++14 to C++17" Follow-up to pull request #513 commit d98d9c0 "ENH: Upgrade elastix from C++11 to C++14".
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.
C++14 is a small extension over C++11, featuring mainly bug fixes and small improvements: https://en.wikipedia.org/wiki/C%2B%2B14
This pull request follows ITK pull request InsightSoftwareConsortium/ITK#2563 commit InsightSoftwareConsortium/ITK@daec0fd "ENH: Upgrade ITK from C++11 to C++14" (1 June 2021).
Follow-up to pull request #123 commit b84ab47 "ENH: Explicitly set CMAKE_CXX_STANDARD to 11", by Kasper Marstal (@kaspermarstal), 8 March 2019
Started using C++14
std::make_unique.