[clang] [clang][HLSL] Fix include guard typo in hlsl_compat_overloads.h (PR #164540)
Krisitan Erik Olsen via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 21 20:07:51 PDT 2025
https://github.com/Kristianerik updated https://github.com/llvm/llvm-project/pull/164540
>From ea81ce0fb2440d0b12497fca7adfd08f3043f31e Mon Sep 17 00:00:00 2001
From: Kristianerik <46120297+Kristianerik at users.noreply.github.com>
Date: Tue, 21 Oct 2025 19:01:36 -0700
Subject: [PATCH] Fix include guard typo in hlsl_compat_overloads.h
Fixes: https://github.com/llvm/llvm-project/issues/164100
---
clang/lib/Headers/hlsl/hlsl_compat_overloads.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clang/lib/Headers/hlsl/hlsl_compat_overloads.h b/clang/lib/Headers/hlsl/hlsl_compat_overloads.h
index fe4277ed4a7d2..ee243abef6a41 100644
--- a/clang/lib/Headers/hlsl/hlsl_compat_overloads.h
+++ b/clang/lib/Headers/hlsl/hlsl_compat_overloads.h
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
#ifndef _HLSL_COMPAT_OVERLOADS_H_
-#define _HLSl_COMPAT_OVERLOADS_H_
+#define _HLSL_COMPAT_OVERLOADS_H_
namespace hlsl {
More information about the cfe-commits
mailing list