Hello !
In this code :
void internationalisation() {
#if (defined(_WIN32) || defined(_WIN64)) // Using Windows 10 !
system("CHCP 65001 > NUL");
#else
;// Linux terminal normaly in UTF-8, nothing to do
#endif // _WINxx
}
I use CB on Windows 10 and the else branch is hilighted !?
What's the matter?
Bests regards
Have you checked "Include host platform defines" in Editor -> Settings -> General settings -> C/C++ Editor settings?
Thanks, that settles it.
Bests regards.
Luc