From e7aad39c3bc903387eec3f7bbb3c48f58d8fbcb1 Mon Sep 17 00:00:00 2001 From: Jakub Chlanda Date: Tue, 8 Aug 2023 09:28:58 +0100 Subject: [PATCH 1/2] [SYCL] include fix --- sycl/source/stream.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sycl/source/stream.cpp b/sycl/source/stream.cpp index 3b598a4ffc7cc..17bfd92f2519c 100644 --- a/sycl/source/stream.cpp +++ b/sycl/source/stream.cpp @@ -6,6 +6,7 @@ // //===----------------------------------------------------------------------===// +#include #include #include #include From b422c9f04c0244e4b9f0ad80d13c195647bda232 Mon Sep 17 00:00:00 2001 From: Jakub Chlanda Date: Wed, 9 Aug 2023 07:32:21 +0100 Subject: [PATCH 2/2] correct place for climits --- sycl/source/stream.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sycl/source/stream.cpp b/sycl/source/stream.cpp index 17bfd92f2519c..d2578bbf1f5bc 100644 --- a/sycl/source/stream.cpp +++ b/sycl/source/stream.cpp @@ -6,12 +6,13 @@ // //===----------------------------------------------------------------------===// -#include #include #include #include #include +#include + namespace sycl { inline namespace _V1 {