Skip to content

Commit

Permalink
Merge pull request #2593 from RossBrunton/ross/formatall
Browse files Browse the repository at this point in the history
Ensure all files are clang formatted
  • Loading branch information
RossBrunton authored Jan 21, 2025
2 parents 871061f + 3bf7624 commit f058cb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake/helpers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function(add_cppformat name)
else()
# Split args into 2 parts (in Windows the list is probably too long)
list(SUBLIST ARGN 0 250 selected_files_1)
list(SUBLIST ARGN 251 -1 selected_files_2)
list(SUBLIST ARGN 250 -1 selected_files_2)
add_custom_target(cppformat-${name}
COMMAND ${CLANG_FORMAT} --style=file --i ${selected_files_1}
COMMAND ${CLANG_FORMAT} --style=file --i ${selected_files_2}
Expand Down
5 changes: 3 additions & 2 deletions source/loader/layers/sanitizer/asan/asan_report.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
*
* Copyright (C) 2024 Intel Corporation
*
* Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM Exceptions.
* See LICENSE.TXT
* Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM
* Exceptions. See LICENSE.TXT
*
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
* @file asan_report.hpp
Expand Down

0 comments on commit f058cb2

Please sign in to comment.