带有波兰语字符串的 C3680

C3680 with polish language strings

本文关键字:C3680 字符串 波兰语      更新时间:2023-10-16

安装了新的Visual Studio版本(Visual Studio 2015 Express而不是Visual Studio 2012)。

带有波兰语言字符串的文件现在不再编译,例如:

const char_t* const myString = "Wkr"oac"tce pojed"zac" w prawo.";   //ERROR C3680

我能做什么?

编辑:哦,是的,这些三胞胎是宏,例如

#define oac "xc3xb3"

问候

通过在宏名称 oac 和 zac 之前和之后添加空格来解决它:

const char_t* const myString = "Wkr" oac "tce pojed" zac " w prawo.";