Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ptahmose committed Dec 11, 2024
1 parent e44c627 commit 1c5470d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/libCZI/CZIReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ CCZIReader::CCZIReader() : isOperational(false), default_frame_of_reference(CZIF
/*virtual*/libCZI::IntPointAndFrameOfReference CCZIReader::TransformPoint(const libCZI::IntPointAndFrameOfReference& source_point, libCZI::CZIFrameOfReference destination_frame_of_reference)
{
CZIFrameOfReference source_frame_of_reference_consolidated;
switch (source_point.frame_of_reference) // NOLINT(clang-diagnostic-switch-enum)
switch (source_point.frame_of_reference)
{
case CZIFrameOfReference::RawSubBlockCoordinateSystem:
case CZIFrameOfReference::PixelCoordinateSystem:
Expand All @@ -124,7 +124,7 @@ CCZIReader::CCZIReader() : isOperational(false), default_frame_of_reference(CZIF
}

CZIFrameOfReference destination_frame_of_reference_consolidated;
switch (destination_frame_of_reference) // NOLINT(clang-diagnostic-switch-enum)
switch (destination_frame_of_reference)
{
case CZIFrameOfReference::RawSubBlockCoordinateSystem:
case CZIFrameOfReference::PixelCoordinateSystem:
Expand Down

0 comments on commit 1c5470d

Please sign in to comment.