@@ -10376,8 +10376,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1037610376
1037710377 os << ".hNativePlatform = ";
1037810378
10379- ur::details::printPtr(os,
10380- *(params->phNativePlatform));
10379+ ur::details::printPtr(os, reinterpret_cast<void *>(
10380+ *(params->phNativePlatform) ));
1038110381
1038210382 os << ", ";
1038310383 os << ".hAdapter = ";
@@ -10573,8 +10573,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1057310573
1057410574 os << ".hNativeContext = ";
1057510575
10576- ur::details::printPtr(os,
10577- *(params->phNativeContext));
10576+ ur::details::printPtr(os, reinterpret_cast<void *>(
10577+ *(params->phNativeContext) ));
1057810578
1057910579 os << ", ";
1058010580 os << ".numDevices = ";
@@ -10783,8 +10783,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1078310783
1078410784 os << ".hNativeEvent = ";
1078510785
10786- ur::details::printPtr(os,
10787- *(params->phNativeEvent));
10786+ ur::details::printPtr(os, reinterpret_cast<void *>(
10787+ *(params->phNativeEvent) ));
1078810788
1078910789 os << ", ";
1079010790 os << ".hContext = ";
@@ -11377,8 +11377,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1137711377
1137811378 os << ".hNativeProgram = ";
1137911379
11380- ur::details::printPtr(os,
11381- *(params->phNativeProgram));
11380+ ur::details::printPtr(os, reinterpret_cast<void *>(
11381+ *(params->phNativeProgram) ));
1138211382
1138311383 os << ", ";
1138411384 os << ".hContext = ";
@@ -11597,8 +11597,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1159711597
1159811598 os << ".hNativeKernel = ";
1159911599
11600- ur::details::printPtr(os,
11601- *(params->phNativeKernel));
11600+ ur::details::printPtr(os, reinterpret_cast<void *>(
11601+ *(params->phNativeKernel) ));
1160211602
1160311603 os << ", ";
1160411604 os << ".hContext = ";
@@ -12046,8 +12046,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1204612046
1204712047 os << ".hNativeQueue = ";
1204812048
12049- ur::details::printPtr(os,
12050- *(params->phNativeQueue));
12049+ ur::details::printPtr(os, reinterpret_cast<void *>(
12050+ *(params->phNativeQueue) ));
1205112051
1205212052 os << ", ";
1205312053 os << ".hContext = ";
@@ -12220,8 +12220,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1222012220
1222112221 os << ".hNativeSampler = ";
1222212222
12223- ur::details::printPtr(os,
12224- *(params->phNativeSampler));
12223+ ur::details::printPtr(os, reinterpret_cast<void *>(
12224+ *(params->phNativeSampler) ));
1222512225
1222612226 os << ", ";
1222712227 os << ".hContext = ";
@@ -12424,8 +12424,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1242412424
1242512425 os << ".hNativeMem = ";
1242612426
12427- ur::details::printPtr(os,
12428- *(params->phNativeMem));
12427+ ur::details::printPtr(os, reinterpret_cast<void *>(
12428+ *(params->phNativeMem) ));
1242912429
1243012430 os << ", ";
1243112431 os << ".hContext = ";
@@ -12456,8 +12456,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1245612456
1245712457 os << ".hNativeMem = ";
1245812458
12459- ur::details::printPtr(os,
12460- *(params->phNativeMem));
12459+ ur::details::printPtr(os, reinterpret_cast<void *>(
12460+ *(params->phNativeMem) ));
1246112461
1246212462 os << ", ";
1246312463 os << ".hContext = ";
@@ -17206,8 +17206,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1720617206
1720717207 os << ".hNativeDevice = ";
1720817208
17209- ur::details::printPtr(os,
17210- *(params->phNativeDevice));
17209+ ur::details::printPtr(os, reinterpret_cast<void *>(
17210+ *(params->phNativeDevice) ));
1721117211
1721217212 os << ", ";
1721317213 os << ".hPlatform = ";
0 commit comments