PMString constructor fails in CS6 if right quote present
The following code works in CS4 but fails in CS6 in Adobe Owl. The right quote (\u2019) appears to be causing an issue in its 8 bit representation (0x92).
WideString w(L"Paul\2019s issue");
PMString sorig = w;
PMString x = sorig.GetPlatformString().c_str();//Failure - GetPlatformString() turns 2019 into 0x92 in the generated std::string - PMString constructor appears to choke on the 0x92
Is this a bug or has the behaviour of the PMString constructor been redefined?
