You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prefixed string literals will right now emit the prefix as is:
#defineS L"string"
emits
const S =L"string"
leading to an error when the file is included since no L-string macro is defined.
Perhaps the prefix can just be removed, alt a no-op L-string macro can be defined since the cconvert from the type signatures should take care of it (albeit with a copy for String -> Cwstring).
The text was updated successfully, but these errors were encountered:
Prefixed string literals will right now emit the prefix as is:
emits
leading to an error when the file is included since no
L
-string macro is defined.Perhaps the prefix can just be removed, alt a no-op
L
-string macro can be defined since thecconvert
from the type signatures should take care of it (albeit with a copy forString
->Cwstring
).The text was updated successfully, but these errors were encountered: