SWDEV-245381: Updated guarantee error messages to print based on BUILD_TYPE

Change-Id: Ifafbc075d6b9860da040c72859127c4e638a786f


[ROCm/hip commit: 387d0aa829]
Este commit está contenido en:
agodavar
2021-01-05 05:08:50 -05:00
cometido por Anusha Godavarthy Surya
padre c82aa3f29b
commit add7f87881
Se han modificado 6 ficheros con 24 adiciones y 25 borrados
+1 -1
Ver fichero
@@ -95,7 +95,7 @@ public:
// Device ID Check to check if module is launched in the same device it was loaded.
inline void CheckDeviceIdMatch() {
if (device_id_ != ihipGetDevice()) {
guarantee(false && "Device mismatch from where this module is loaded");
guarantee(false, "Device mismatch from where this module is loaded");
}
}