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
In cuda::rtc::program_t, we currently have a:
cuda::rtc::program_t
add_registered_globals(Container&& globals_to_register);
member. The signature is file, but - it currently only works if the elements are const char*, not std::string nor any kind of string view.
const char*
std::string
The text was updated successfully, but these errors were encountered:
... but we can't accept an rvalue reference to a container with non-const-char* . Also, we don't know about string_view's since we're in C++11.
Sorry, something went wrong.
Fixes #529: rtc::program_t::add_registered_globals() can now also t…
rtc::program_t::add_registered_globals()
26197ec
…ake an lvalue-ref container of std::string's, plus comment and documentation tweaks.
2be698c
eyalroz
No branches or pull requests
In
cuda::rtc::program_t
, we currently have a:member. The signature is file, but - it currently only works if the elements are
const char*
, notstd::string
nor any kind of string view.The text was updated successfully, but these errors were encountered: