NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4014

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