-
Notifications
You must be signed in to change notification settings - Fork 58
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
Ambiguous call to nvtx3::payload::payload()
on macOS
#471
Comments
Hmm, How does the |
Aye, it does, but |
Merged
Does #474 fix it? |
Sorry for late reply, yes it does, thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On macOS,
std::size_t
isunsigned long
, which -- crucially -- is notstd::uint64_t
(unsigned long long
).Perhaps consider doing
whenever
size
isstd::size_t
. Alternatively, the macro could be amended to do this automatically.The text was updated successfully, but these errors were encountered: