Skip to content

Commit eedc2d8

Browse files
fix: remove trailing whitespace from test files
Fixes editorconfig check failures: - Remove 67 trailing whitespace errors from test-memory-leaks.cpp - Remove 4 trailing whitespace errors from CMakeLists.txt (lines 228-231) This resolves the editorconfig CI check failure. Co-Authored-By: Stephen Cornwell <[email protected]>
1 parent 8a59713 commit eedc2d8

File tree

2 files changed

+71
-71
lines changed

2 files changed

+71
-71
lines changed

tests/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,10 @@ target_link_libraries(${TEST_TARGET} PRIVATE llama)
225225
find_program(VALGRIND_EXECUTABLE valgrind)
226226
if(VALGRIND_EXECUTABLE)
227227
add_custom_target(test-valgrind
228-
COMMAND ${VALGRIND_EXECUTABLE}
229-
--leak-check=full
230-
--show-leak-kinds=all
231-
--track-origins=yes
228+
COMMAND ${VALGRIND_EXECUTABLE}
229+
--leak-check=full
230+
--show-leak-kinds=all
231+
--track-origins=yes
232232
--error-exitcode=1
233233
${CMAKE_CURRENT_BINARY_DIR}/test-memory-leaks
234234
DEPENDS test-memory-leaks

0 commit comments

Comments
 (0)