mirror of
https://github.com/reactos/reactos.git
synced 2026-06-04 02:10:28 +08:00
CORE-17545
Fix Clang warning:
base/setup/usetup/lang/de-DE.h:1099:24: warning: illegal character encoding in string literal [-Winvalid-source-encoding]
"die Partition <E4>ndern, die derzeit als aktiv markiert ist.",
^~~~
Some source files here are converted by code7bit. code7bit: https://github.com/katahiromz/code7bit code7bit makes the string literals 8-bit clean. If source contains any non-8-bit-clean strings, non-Latin developer cannot build the project on MSVC. 8-bit clean https://en.wikipedia.org/wiki/8-bit_clean To edit a file converted by code7bit, you have to revert it at first. To revert, please execute code7bit -r <file>. After edit, to convert again, please execute code7bit -c <file>.