Skip to content

Commit e36e57b

Browse files
authored
[BUILD] Fix unicode build issue. (#135315)
Fix unicode build fail issue: ``` C4819 The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss ...\llvm-project\llvm\include\llvm\Support\Compiler.h ```
1 parent bc2a5b5 commit e36e57b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/Support/Compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232

233233
// Only enabled for clang:
234234
// See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99587
235-
// GCC may produce "warning: retain attribute ignored" (despite
235+
// GCC may produce "warning: 'retain' attribute ignored" (despite
236236
// __has_attribute(retain) being 1).
237237
#if defined(__clang__) && __has_attribute(retain)
238238
#define LLVM_ATTRIBUTE_RETAIN __attribute__((__retain__))

0 commit comments

Comments
 (0)