From e1ba9401347a0841718ddc74adb49a726999468c Mon Sep 17 00:00:00 2001 From: Ronan Keryell Date: Tue, 5 Dec 2023 14:59:10 -0800 Subject: [PATCH] [SYCL] Missing C++ cstdint include Fix a test compilation error with g++ 13 on Ubuntu 23.10. Replace also a C header include with the official C++ one. --- clang/test/Driver/clang-offload-wrapper-exe.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/test/Driver/clang-offload-wrapper-exe.cpp b/clang/test/Driver/clang-offload-wrapper-exe.cpp index 556a91d2667f9..668e68874115a 100644 --- a/clang/test/Driver/clang-offload-wrapper-exe.cpp +++ b/clang/test/Driver/clang-offload-wrapper-exe.cpp @@ -32,7 +32,8 @@ // RUN: %t.batch.exe > %t.batch.exe.out // RUN: diff -b %t.batch.exe.out %t.all -#include +#include +#include #include #include #include