Skip to content

Commit

Permalink
Merge pull request #1660 from dzenanz/compFix
Browse files Browse the repository at this point in the history
  • Loading branch information
cookpa authored Jan 18, 2024
2 parents 71cb65d + 43aa7dd commit dcdc878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Examples/sccan.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2590,7 +2590,7 @@ sccan(std::vector<std::string> args, std::ostream * /*out_stream = nullptr */)
// which the sccanparser should handle
args.insert(args.begin(), "sccan");

std::remove(args.begin(), args.end(), std::string(""));
std::ignore = std::remove(args.begin(), args.end(), std::string(""));
int argc = args.size();
char ** argv = new char *[args.size() + 1];
for (unsigned int i = 0; i < args.size(); ++i)
Expand Down
2 changes: 1 addition & 1 deletion SuperBuild/External_ITKv5.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ if(NOT DEFINED ${extProjName}_DIR AND NOT ${USE_SYSTEM_${extProjName}})

### --- End Project specific additions
set(${proj}_REPOSITORY ${git_protocol}://github.com/InsightSoftwareConsortium/ITK.git)
set(${proj}_GIT_TAG d45127b5a3296b7f1721b57e0ffe8e0071d0c64f) # 2023-12-27
set(${proj}_GIT_TAG 66ab5b14c476d057ed46a4daba05b710681160e6) # 2024-01-17
set(ITK_VERSION_ID ITK-5.4) ### NOTE: When updating GIT_TAG, also update ITK_VERSION_ID if ITK version has changed

ExternalProject_Add(${proj}
Expand Down

0 comments on commit dcdc878

Please sign in to comment.