Skip to content

Commit e56f14f

Browse files
authored
[SYCL] Fix a missing include (#8032)
std::unique_ptr is in <memory> and without it we get a compilation error with gcc-12
1 parent fcd33bd commit e56f14f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sycl-fusion/jit-compiler/include/JITContext.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#ifndef SYCL_FUSION_JIT_COMPILER_JITCONTEXT_H
1010
#define SYCL_FUSION_JIT_COMPILER_JITCONTEXT_H
1111

12+
#include <memory>
1213
#include <mutex>
1314
#include <shared_mutex>
1415
#include <unordered_map>

0 commit comments

Comments
 (0)