-2

installed new Visual Studio Version (Visual Studio 2015 Express instead of Visual Studio 2012).

A file with polish language strings doesn't compile anymore now, for example:

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

What can I do?

Edit: Oh yeah, these triplets are macros like

#define oac "\xc3\xb3"

Regards

user5024425
  • 397
  • 3
  • 14

1 Answers1

2

Solved it by adding blank spaces before and after the macro names oac and zac:

const char_t* const myString = "Wkr" oac "tce pojed" zac " w prawo.";
user5024425
  • 397
  • 3
  • 14