win32: replace the check for _MSC_VER by a more generic __has_include check#44
Open
jcelerier wants to merge 2 commits into
Open
win32: replace the check for _MSC_VER by a more generic __has_include check#44jcelerier wants to merge 2 commits into
jcelerier wants to merge 2 commits into
Conversation
… check The check has the same effect since support for stdbool.h and __has_include were both introduced in the same MSVC version, but at least now it also works with MinGW
Owner
|
According to this page https://learn.microsoft.com/en-us/cpp/overview/visual-cpp-language-conformance:
However this page https://devblogs.microsoft.com/cppblog/c99-library-support-in-visual-studio-2013/ says the This page gives the corresponding values for All in all, it seems that we want |
Owner
|
Or more conservatively If we can't confirm that VS 2013 provides a working |
Owner
|
Hello @jcelerier 👋 Still around? |
Contributor
Author
|
wops, completely forgot about this sorry ! |
Contributor
Author
I think there's a missing branch here. I don't think it's too problematic though in practice |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The check has the same effect since support for stdbool.h and __has_include were
both introduced in the same MSVC version, but at least now it also works with MinGW