Skip to content

Commit

Permalink
Merge pull request #505 from QIICR/fix-std-vector2
Browse files Browse the repository at this point in the history
BUG: fix parameter incompatible with certain configuration flags
  • Loading branch information
fedorov authored Jun 30, 2024
2 parents ec5dee7 + 6a6fdb4 commit 126a203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libsrc/Itk2DicomConverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ namespace dcmqi {

OFVector<SourceImageItem*> srcimgItems;
OFVector<DcmDataset*> dcmDatasets_ofvector(dcmDatasets.begin(), dcmDatasets.end());
derimgItem->addSourceImageItems(dcmDatasets,
derimgItem->addSourceImageItems(dcmDatasets_ofvector,
CodeSequenceMacro(code_seg.CodeValue,code_seg.CodingSchemeDesignator, code_seg.CodeMeaning), srcimgItems, OFTrue /*skip file errors */);

for(size_t src_image_cnt=0;src_image_cnt<srcimgItems.size();src_image_cnt++){
Expand Down Expand Up @@ -682,4 +682,4 @@ namespace dcmqi {
return true;
}

}
}

0 comments on commit 126a203

Please sign in to comment.