llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Krisitan Erik Olsen (Kristianerik) <details> <summary>Changes</summary> 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 --- Full diff: https://github.com/llvm/llvm-project/pull/164540.diff 1 Files Affected: - (modified) clang/lib/Headers/hlsl/hlsl_compat_overloads.h (+1-1) ``````````diff 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 { `````````` </details> https://github.com/llvm/llvm-project/pull/164540 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
