We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e61fc3 commit f1b8483Copy full SHA for f1b8483
sycl/source/detail/program_manager/program_manager.cpp
@@ -1841,7 +1841,7 @@ DeviceKernelInfo &
1841
ProgramManager::getOrCreateDeviceKernelInfo(KernelNameStrRefT KernelName) {
1842
std::lock_guard<std::mutex> Guard(m_DeviceKernelInfoMapMutex);
1843
auto Result = m_DeviceKernelInfoMap.try_emplace(
1844
- KernelName, CompileTimeKernelInfoTy{std::string_view(KernelName)});
+ KernelName, CompileTimeKernelInfoTy(detail::string_view(KernelName)));
1845
return Result.first->second;
1846
}
1847
0 commit comments