@@ -305,7 +305,7 @@ bool SYCL_JIT_Compilation_Available() {
305
305
306
306
std::pair<sycl_device_binaries, std::string> SYCL_JIT_to_SPIRV (
307
307
[[maybe_unused]] const std::string &SYCLSource,
308
- [[maybe_unused]] const include_pairs_t & IncludePairs,
308
+ [[maybe_unused]] const include_pairs_t & IncludePairs,
309
309
[[maybe_unused]] const std::vector<std::string> &UserArgs,
310
310
[[maybe_unused]] std::string *LogPtr,
311
311
[[maybe_unused]] const std::vector<std::string> &RegisteredKernelNames) {
@@ -314,8 +314,8 @@ std::pair<sycl_device_binaries, std::string> SYCL_JIT_to_SPIRV(
314
314
std::string Prefix = " rtc_" + std::to_string (CompilationID++) + " $" ;
315
315
sycl_device_binaries Binaries =
316
316
sycl::detail::jit_compiler::get_instance ().compileSYCL (
317
- SYCLSource, IncludePairs, UserArgs, LogPtr,
318
- RegisteredKernelNames, Prefix);
317
+ SYCLSource, IncludePairs, UserArgs, LogPtr, RegisteredKernelNames,
318
+ Prefix);
319
319
return std::make_pair (Binaries, std::move (Prefix));
320
320
#else
321
321
throw sycl::exception (sycl::errc::build,
0 commit comments