Home > Enterprise >  Unicode to integer conversion visual studio bug
Unicode to integer conversion visual studio bug

Time:05-24

Im trying to convert a unicode character to an integer and encountered a bug in visual studio not sure if its a bug or something im doing wrong

The project has unicode character set and not multibyte.

#include <windows.h>
#include <iostream>

int main()
{
    constexpr int a = L'           
  • Related