Skip to content

Commit 623dd23

Browse files
committed
Fix minor typos and formatting
1 parent 0578975 commit 623dd23

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

cmake/LibraryDefine.cmake

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ function(OPENEXR_DEFINE_LIBRARY libname)
4343
if(OPENEXR_CURLIB_CURBINDIR)
4444
target_include_directories(${objlib} PRIVATE $<BUILD_INTERFACE:${OPENEXR_CURLIB_CURBINDIR}>)
4545
endif()
46-
4746
target_link_libraries(${objlib} PUBLIC ${PROJECT_NAME}::Config ${OPENEXR_CURLIB_DEPENDENCIES} ${CMAKE_DL_LIBS} openjph)
48-
4947
if(OPENEXR_CURLIB_PRIVATE_DEPS)
5048
target_link_libraries(${objlib} PRIVATE ${OPENEXR_CURLIB_PRIVATE_DEPS})
5149
endif()

src/lib/OpenEXR/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# SPDX-License-Identifier: BSD-3-Clause
22
# Copyright (c) Contributors to the OpenEXR Project.
3+
34
openexr_define_library(OpenEXR
45
PRIV_EXPORT OPENEXR_EXPORTS
56
CURDIR ${CMAKE_CURRENT_SOURCE_DIR}

src/test/OpenEXRTest/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ define_openexr_tests(
169169
testExistingStreams
170170
testFutureProofing
171171
testHeader
172-
testHuf
172+
testHuf
173173
testInputPart
174174
testIsComplete
175175
testLargeDataWindowOffsets

src/test/OpenEXRTest/testCompression.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -420,11 +420,6 @@ writeRead (
420420
assert (array1.h[y][x].bits () == array2.h[y][x].bits ());
421421
for (int c = 0; c < 4; ++c)
422422
{
423-
if (array1.rgba[c][y][x].bits () != array2.rgba[c][y][x].bits () )
424-
{
425-
cout << "\nmismatch detected with comp=" << comp << " c=" <<
426-
c << " y=" << y << " x=" << x << "\n" << flush;
427-
}
428423
assert (
429424
array1.rgba[c][y][x].bits () ==
430425
array2.rgba[c][y][x].bits ());

0 commit comments

Comments
 (0)