Cleanup: avoid warning on unused argument in cycles_device

This commit is contained in:
Xavier Hallade
2023-05-15 07:35:03 +02:00
parent d91f0bf8d2
commit 5c57b9aa79

View File

@@ -126,6 +126,7 @@ bool OneapiDevice::can_use_hardware_raytracing_for_features(uint requested_featu
# if defined(RTC_VERSION) && RTC_VERSION < 40100
return !(requested_features & (KERNEL_FEATURE_MNEE | KERNEL_FEATURE_NODE_RAYTRACE));
# else
(void)requested_features;
return true;
# endif
}