From 09d30a24d91105ae6b719a25d96a25d9cbc77ffd Mon Sep 17 00:00:00 2001 From: Callum Fare Date: Fri, 6 Sep 2024 15:18:28 +0100 Subject: [PATCH] [SYCL] Fix unused plugin member after #15262 (#15312) #15262 failed post-commit testing, this should fix it --- sycl/source/detail/plugin.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sycl/source/detail/plugin.hpp b/sycl/source/detail/plugin.hpp index 3a44b23091320..22f9ed96cb589 100644 --- a/sycl/source/detail/plugin.hpp +++ b/sycl/source/detail/plugin.hpp @@ -221,7 +221,9 @@ class plugin { // represents the unique ids of the last device of each platform // index of this vector corresponds to the index in UrPlatforms vector. std::vector LastDeviceIds; +#ifdef _WIN32 void *UrLoaderHandle = nullptr; +#endif UrFuncPtrMapT UrFuncPtrs; }; // class plugin