From eaa8c8d98933ef71c6c55e1fc342dc70c9e8d762 Mon Sep 17 00:00:00 2001 From: Callum Fare Date: Fri, 6 Sep 2024 14:58:34 +0100 Subject: [PATCH] Fix unused plugin member after #15262 --- 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