-
-
Notifications
You must be signed in to change notification settings - Fork 619
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding support for NotSet characterset in VS2010+ (#79) #718
Conversation
I don't fully understand this API. |
Apparently there is more to is then just A vs W.... @jrepp might be able to explain |
This one has a bit of history, see this post to the developer forums. I have no objection to revisiting it though. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm…not feeling good about this one. I think I would feel better about breaking backward compatibility and using Default
for this (which I should have done in the first place; my bad).
If you create a new C++ project via the VS project wizard (do we still call them "wizards"? why did we ever call them "wizards"?) in the IDE, it sets CharacterSet to Unicode. So technically our default value is right, from that perspective. Best I can tell "NotSet" equates to an ASCII or Single-Byte Character Set. Perhaps we could use one of those, more informative names instead? That would make it easier to translate them to the other toolsets as well. What do you think? |
@starkos That sounds like an acceptable alternative yes, I'll adjust the PR, using "ASCII" |
06f929e
to
3ab5ad5
Compare
3ab5ad5
to
ef58284
Compare
changed, and added some tests. |
No description provided.