@@ -10391,8 +10391,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1039110391
1039210392 os << ".hNativePlatform = ";
1039310393
10394- ur::details::printPtr(os,
10395- *(params->phNativePlatform));
10394+ ur::details::printPtr(os, reinterpret_cast<void *>(
10395+ *(params->phNativePlatform) ));
1039610396
1039710397 os << ", ";
1039810398 os << ".hAdapter = ";
@@ -10588,8 +10588,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1058810588
1058910589 os << ".hNativeContext = ";
1059010590
10591- ur::details::printPtr(os,
10592- *(params->phNativeContext));
10591+ ur::details::printPtr(os, reinterpret_cast<void *>(
10592+ *(params->phNativeContext) ));
1059310593
1059410594 os << ", ";
1059510595 os << ".numDevices = ";
@@ -10798,8 +10798,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1079810798
1079910799 os << ".hNativeEvent = ";
1080010800
10801- ur::details::printPtr(os,
10802- *(params->phNativeEvent));
10801+ ur::details::printPtr(os, reinterpret_cast<void *>(
10802+ *(params->phNativeEvent) ));
1080310803
1080410804 os << ", ";
1080510805 os << ".hContext = ";
@@ -11392,8 +11392,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1139211392
1139311393 os << ".hNativeProgram = ";
1139411394
11395- ur::details::printPtr(os,
11396- *(params->phNativeProgram));
11395+ ur::details::printPtr(os, reinterpret_cast<void *>(
11396+ *(params->phNativeProgram) ));
1139711397
1139811398 os << ", ";
1139911399 os << ".hContext = ";
@@ -11612,8 +11612,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1161211612
1161311613 os << ".hNativeKernel = ";
1161411614
11615- ur::details::printPtr(os,
11616- *(params->phNativeKernel));
11615+ ur::details::printPtr(os, reinterpret_cast<void *>(
11616+ *(params->phNativeKernel) ));
1161711617
1161811618 os << ", ";
1161911619 os << ".hContext = ";
@@ -12061,8 +12061,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1206112061
1206212062 os << ".hNativeQueue = ";
1206312063
12064- ur::details::printPtr(os,
12065- *(params->phNativeQueue));
12064+ ur::details::printPtr(os, reinterpret_cast<void *>(
12065+ *(params->phNativeQueue) ));
1206612066
1206712067 os << ", ";
1206812068 os << ".hContext = ";
@@ -12235,8 +12235,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1223512235
1223612236 os << ".hNativeSampler = ";
1223712237
12238- ur::details::printPtr(os,
12239- *(params->phNativeSampler));
12238+ ur::details::printPtr(os, reinterpret_cast<void *>(
12239+ *(params->phNativeSampler) ));
1224012240
1224112241 os << ", ";
1224212242 os << ".hContext = ";
@@ -12439,8 +12439,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1243912439
1244012440 os << ".hNativeMem = ";
1244112441
12442- ur::details::printPtr(os,
12443- *(params->phNativeMem));
12442+ ur::details::printPtr(os, reinterpret_cast<void *>(
12443+ *(params->phNativeMem) ));
1244412444
1244512445 os << ", ";
1244612446 os << ".hContext = ";
@@ -12471,8 +12471,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1247112471
1247212472 os << ".hNativeMem = ";
1247312473
12474- ur::details::printPtr(os,
12475- *(params->phNativeMem));
12474+ ur::details::printPtr(os, reinterpret_cast<void *>(
12475+ *(params->phNativeMem) ));
1247612476
1247712477 os << ", ";
1247812478 os << ".hContext = ";
@@ -17221,8 +17221,8 @@ inline std::ostream &operator<<(std::ostream &os, [[maybe_unused]] const struct
1722117221
1722217222 os << ".hNativeDevice = ";
1722317223
17224- ur::details::printPtr(os,
17225- *(params->phNativeDevice));
17224+ ur::details::printPtr(os, reinterpret_cast<void *>(
17225+ *(params->phNativeDevice) ));
1722617226
1722717227 os << ", ";
1722817228 os << ".hPlatform = ";
0 commit comments