Skip to content

Commit 44df23a

Browse files
authored
[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
1 parent 92e80d4 commit 44df23a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Headers/hlsl/hlsl_compat_overloads.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//===----------------------------------------------------------------------===//
88

99
#ifndef _HLSL_COMPAT_OVERLOADS_H_
10-
#define _HLSl_COMPAT_OVERLOADS_H_
10+
#define _HLSL_COMPAT_OVERLOADS_H_
1111

1212
namespace hlsl {
1313

0 commit comments

Comments
 (0)