-
Notifications
You must be signed in to change notification settings - Fork 444
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
clang 7.0 support - individual warning levels #100
Conversation
You should merge my pullrequest changes into yours. So we can see whether the compile errors are gone. |
jeah of course!! :-) but I have not so much time fixing these now (also I am not really experienced in these errors...), but of course one should fix them (maybe you could point out some places to look at or how to potentially fix them?) to be continued... |
The thing is, when somebody is using RTTR and he likes to user -Wall and -Werror, he cannot use RTTR. So your changes will not help here. You have to find a way to correctly fix the code or disable the warning directly in the header files. |
Thats true, my fix is only a stupid hack at the moment... |
error C2752: 'template_type_trait<std::array<bool, 100>>': more than one partial specialization matches the template argument list note: could be 'template_type_trait<T<N>>' note: or 'template_type_trait<T<N>>' Reported to MS
The error msg was: _Pragma ("clang diagnostic ignored \"-Wnoexcept-type\"") The version scheme for clang on MacOSX is different then for the other operating systems. The version prior clang 9 on mac did not support this pragma. So we disable it. thx to @gabyx
…rt' into disable-warnings
@gabyx |
thx too for your efforts |
this not a really good pull request, I started it, to keep working on these c++17 warnings...
catch.hpp
dependency (think its marco expansion?)