Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ptahmose committed Dec 9, 2024
1 parent 46f0b73 commit 49f7a9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions Src/libCZI/libCZI_Utilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,5 @@ namespace libCZI
//! Examples: "zstd0:ExplicitLevel=3", "zstd1:ExplicitLevel=2;PreProcess=HiLoByteUnpack"
//! If parsing fails an excpetion of type "Logic_error" is thrown.
static CompressionOption ParseCompressionOptions(const std::string& options);

// static libCZI::IntRect ConvertToFrameOfReference(const libCZI::IntRectAndFrameOfReference& source_rect, libCZI::ISubBlockRepository* sub_block_repository, libCZI::CZIFrameOfReference destination_frame_of_reference);
};
}
6 changes: 3 additions & 3 deletions Src/libCZI_UnitTests/test_frame_of_reference_transform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ namespace
auto mem_output_stream = make_shared<CMemOutputStream>(0);

auto spWriterInfo = make_shared<libCZI::CCziWriterInfo>(
libCZI::GUID{ 0x1234567, 0x89ab, 0xcdef, {1, 2, 3, 4, 5, 6, 7, 8} }, // NOLINT
libCZI::CDimBounds{ {libCZI::DimensionIndex::C, 0, 1} }, // set a bounds for C
0, static_cast<int>(mosaic_info.tiles.size() - 1)); // set a bounds M : 0<=m<=0
libCZI::GUID{ 0x1234567, 0x89ab, 0xcdef, {1, 2, 3, 4, 5, 6, 7, 8} }, // NOLINT
libCZI::CDimBounds{ {libCZI::DimensionIndex::C, 0, 1} }, // set a bounds for C
0, static_cast<int>(mosaic_info.tiles.size() - 1)); // set a bounds M : 0<=m<=0
writer->Create(mem_output_stream, spWriterInfo);

for (size_t i = 0; i < mosaic_info.tiles.size(); ++i)
Expand Down

0 comments on commit 49f7a9f

Please sign in to comment.