Skip to content

Conversation

@Kristianerik
Copy link

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

@github-actions
Copy link

Thank you for submitting a Pull Request (PR) to the LLVM Project!

This PR will be automatically labeled and the relevant teams will be notified.

If you wish to, you can add reviewers by using the "Reviewers" section on this page.

If this is not working for you, it is probably because you do not have write permissions for the repository. In which case you can instead tag reviewers by name in a comment by using @ followed by their GitHub username.

If you have received no comments on your PR for a week, you can request a review by "ping"ing the PR by adding a comment “Ping”. The common courtesy "ping" rate is once a week. Please remember that you are asking for valuable time from other developers.

If you have further questions, they may be answered by the LLVM GitHub User Guide.

You can also ask questions in a comment on this PR, on the LLVM Discord or on the forums.

@llvmbot llvmbot added clang Clang issues not falling into any other category backend:X86 clang:headers Headers provided by Clang, e.g. for intrinsics labels Oct 22, 2025
@llvmbot
Copy link
Member

llvmbot commented Oct 22, 2025

@llvm/pr-subscribers-backend-x86

@llvm/pr-subscribers-clang

Author: Krisitan Erik Olsen (Kristianerik)

Changes

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backend:X86 clang:headers Headers provided by Clang, e.g. for intrinsics clang Clang issues not falling into any other category

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Include guard typo in hlsl_compat_overloads.h

2 participants