Skip to content

Commit

Permalink
COMP: Add missing semicolon to macro call itkOpenCLVector.hxx line 113
Browse files Browse the repository at this point in the history
- Fixed issue #1248 "itkOpenCLVector.hxx line 113, missing ;", submitted by Nick Lekkas
- Follow-up to pull request #1228 commit c41fdd6 "COMP: Add missing semicolons to ElastixRegistrationMethod and OpenCL"

Co-authored-by: NickLekkas-AIMedical
  • Loading branch information
N-Dekker committed Oct 1, 2024
1 parent bd2dd0b commit eda2150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/OpenCL/ITKimprovements/itkOpenCLVector.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ OpenCLVector<T>::Write(const T * data, const std::size_t count, const std::size_
{
itkAssertOrThrowMacro(((offset + count) <= this->m_Size),
"OpenCLVector<T>::Write(data, " << count << ", " << offset
<< ") (offset + count) is out of range")
<< ") (offset + count) is out of range");

OpenCLVectorBase::Write(data, count * sizeof(T), offset * sizeof(T));
}
Expand Down

0 comments on commit eda2150

Please sign in to comment.