Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bvt-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 20
sudo apt install libc++-20-dev clang-format-20
sudo apt install -y libc++-20-dev clang-format-20

- name: check compiler version
run: |
Expand Down
6 changes: 3 additions & 3 deletions include/proxy/proxy.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#ifndef _MSFT_PROXY_
#define _MSFT_PROXY_
#ifndef MSFT_PROXY_PROXY_H_
#define MSFT_PROXY_PROXY_H_

#include "v4/proxy.h" // IWYU pragma: export

#endif // _MSFT_PROXY_
#endif // MSFT_PROXY_PROXY_H_
6 changes: 3 additions & 3 deletions include/proxy/proxy_fmt.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#ifndef _MSFT_PROXY_FMT_
#define _MSFT_PROXY_FMT_
#ifndef MSFT_PROXY_PROXY_FMT_H_
#define MSFT_PROXY_PROXY_FMT_H_

#include "v4/proxy_fmt.h" // IWYU pragma: export

#endif // _MSFT_PROXY_FMT_
#endif // MSFT_PROXY_PROXY_FMT_H_
6 changes: 3 additions & 3 deletions include/proxy/proxy_macros.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#ifndef _MSFT_PROXY_MACROS_
#define _MSFT_PROXY_MACROS_
#ifndef MSFT_PROXY_PROXY_MACROS_H_
#define MSFT_PROXY_PROXY_MACROS_H_

#include "v4/proxy_macros.h" // IWYU pragma: export

#endif // _MSFT_PROXY_MACROS_
#endif // MSFT_PROXY_PROXY_MACROS_H_
Loading