concatenating mismatched wide strings
A wide string literal is concatenated with a standard string literal.
Possible cause
Example
char hello[] = L"Hello, " "world" // Warning char hello[] = L"Hello, " L"world" // OK