W8098 Multi-character character constant (C++)
Go Up to Compiler Errors And Warnings (C++) Index
This warning is issued when the compiler detects a multi-character integer constant, such as:
int foo = 'abcd';
The problem with this construct is that the byte order of the characters is implementation dependent.