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
Some versions of NVCC complain about unused lock_guard's. Perhaps they do nothing on the device side? Perhaps it's an NVCC bug?
At any rate, we can overcome this issue with old-style casting-to-void, i.e. (void) lock in many places in doctest.h.
(void) lock
doctest.h
The text was updated successfully, but these errors were encountered:
Fixes #95: Adding (void) lock; commands to doctest.h to avoid spu…
(void) lock;
7af92c2
…rious warning about the locks being unused.
eyalroz
No branches or pull requests
Some versions of NVCC complain about unused lock_guard's. Perhaps they do nothing on the device side? Perhaps it's an NVCC bug?
At any rate, we can overcome this issue with old-style casting-to-void, i.e.
(void) lock
in many places indoctest.h
.The text was updated successfully, but these errors were encountered: