C1443: Illegal wide character

[ERROR]

Description

There is a illegal wide character after a wide character designator (L).

Example
    int i = sizeof(L 3.5);

  
Tips

After L there has to be a character constant (e.g. L'a') or a string (e.g. L"abc").