Skip to content

Commit d3aa07a

Browse files
authored
Merge pull request #2593 from RossBrunton/ross/formatall
Ensure all files are clang formatted
2 parents 3087543 + 8c79faa commit d3aa07a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

cmake/helpers.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function(add_cppformat name)
3030
else()
3131
# Split args into 2 parts (in Windows the list is probably too long)
3232
list(SUBLIST ARGN 0 250 selected_files_1)
33-
list(SUBLIST ARGN 251 -1 selected_files_2)
33+
list(SUBLIST ARGN 250 -1 selected_files_2)
3434
add_custom_target(cppformat-${name}
3535
COMMAND ${CLANG_FORMAT} --style=file --i ${selected_files_1}
3636
COMMAND ${CLANG_FORMAT} --style=file --i ${selected_files_2}

source/loader/layers/sanitizer/asan/asan_report.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
*
33
* Copyright (C) 2024 Intel Corporation
44
*
5-
* Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM Exceptions.
6-
* See LICENSE.TXT
5+
* Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM
6+
* Exceptions. See LICENSE.TXT
7+
*
78
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
89
*
910
* @file asan_report.hpp

0 commit comments

Comments
 (0)