We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When building some code that includes doctest, the following warning is emitted on line 65 of the combined header:
Unknown warning group - '-Wzero-as-null-pointer-constant', ignored
To reproduce, simply attempt to build the some code that uses doctest.
#if !defined(__has_warning) || __has_warning("-Wzero-as-null-pointer-constant") # pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant" #endif
re: clang version:
$ clang -v Apple LLVM version 9.0.0 (clang-900.0.37) Target: x86_64-apple-darwin16.7.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
The text was updated successfully, but these errors were encountered:
f1688b5
Should be fixed - this build with xcode 9 passed :)
Sorry, something went wrong.
No branches or pull requests
Description
When building some code that includes doctest, the following warning is emitted on line 65 of the combined header:
Steps to reproduce
To reproduce, simply attempt to build the some code that uses doctest.
Suggested Fix (adjusted from similar error here)
Extra information
re: clang version:
The text was updated successfully, but these errors were encountered: