From 9d85dda2bb9f42c2421730ecaba4f2159e3a05f8 Mon Sep 17 00:00:00 2001 From: yuanwei Date: Tue, 23 Apr 2024 03:17:18 +0000 Subject: [PATCH] =?UTF-8?q?update=20LLVM=20Parallel=20Universe=20Project/?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E5=AE=9A=E4=BD=8D=E6=80=BB=E7=BB=93/expected?= =?UTF-8?q?=20parameter=20declarator=E9=97=AE=E9=A2=98=E5=AE=9A=E4=BD=8D?= =?UTF-8?q?=E5=8F=8A=E4=BF=AE=E5=A4=8D=E6=8C=87=E5=AF=BC.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yuanwei --- ...\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/LLVM Parallel Universe Project/\351\227\256\351\242\230\345\256\232\344\275\215\346\200\273\347\273\223/expected parameter declarator\351\227\256\351\242\230\345\256\232\344\275\215\345\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" "b/LLVM Parallel Universe Project/\351\227\256\351\242\230\345\256\232\344\275\215\346\200\273\347\273\223/expected parameter declarator\351\227\256\351\242\230\345\256\232\344\275\215\345\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" index f89f41f..a71eb41 100644 --- "a/LLVM Parallel Universe Project/\351\227\256\351\242\230\345\256\232\344\275\215\346\200\273\347\273\223/expected parameter declarator\351\227\256\351\242\230\345\256\232\344\275\215\345\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" +++ "b/LLVM Parallel Universe Project/\351\227\256\351\242\230\345\256\232\344\275\215\346\200\273\347\273\223/expected parameter declarator\351\227\256\351\242\230\345\256\232\344\275\215\345\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" @@ -107,7 +107,7 @@ dprintf (int __fd, const char *__restrict __fmt, ...) ```abap clang main.c selfdef.c -O2 -Wp,-D_FORTIFY_SOURCE=2 ``` -系统中已经有一个`dprintf`宏定义,而`./selfdef.h`文件中的声明就会冲突,从而报告以上错误。 +系统中已经有一个`dprintf`宏定义,和`./selfdef.h`文件中的声明冲突,导致编译错误。 ## 3、问题修改建议 由以上分析可以想到,需要根据应用中实际情况来修改,确保修前后应用仍然能链接正确的定义。 -- Gitee