[clang] 44df23a - [clang][HLSL] Fix include guard typo in hlsl_compat_overloads.h (#164540)

via cfe-commits cfe-commits at lists.llvm.org
Sat Nov 1 11:01:11 PDT 2025


Author: Krisitan Erik Olsen
Date: 2025-11-01T18:01:06Z
New Revision: 44df23aa8ea20618318feda3a445457be3da1ecf

URL: https://github.com/llvm/llvm-project/commit/44df23aa8ea20618318feda3a445457be3da1ecf
DIFF: https://github.com/llvm/llvm-project/commit/44df23aa8ea20618318feda3a445457be3da1ecf.diff

LOG: [clang][HLSL] Fix include guard typo in hlsl_compat_overloads.h (#164540)

Fixes a typo in the include guard name in hlsl_compat_overloads.h 

The incorrect line:
`  #define _HLSl_COMPAT_OVERLOADS_H_`
has been corrected to:
`  #define _HLSL_COMPAT_OVERLOADS_H_`


Fixes #164100

Added: 
    

Modified: 
    clang/lib/Headers/hlsl/hlsl_compat_overloads.h

Removed: 
    


################################################################################
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