-
Notifications
You must be signed in to change notification settings - Fork 201
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
Explicitly mark RMM headers with RMM_EXPORT
#1654
Explicitly mark RMM headers with RMM_EXPORT
#1654
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Changes make sense to me based on our offline conversations.
RMM_EXPORT
RMM_EXPORT
@@ -81,7 +81,8 @@ | |||
* @endcode | |||
*/ | |||
|
|||
namespace rmm::mr { | |||
namespace RMM_EXPORT rmm { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This now means that the existing RMM_EXPORT
on get_map
in this file could be removed, IIUC. However, I suspect we should keep it (see also #1653) so that if we ever decide to tighten up the export list we don't lose that correctness.
406a1eb
to
8df2207
Compare
eba260d
to
870632a
Compare
/merge |
Thanks @robertmaynard! |
Description
Fixes #1652
Checklist