We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1600218 commit d4412d7Copy full SHA for d4412d7
sycl/unittests/scheduler/InOrderQueueSyncCheck.cpp
@@ -19,13 +19,14 @@ using namespace sycl;
19
// Define type with the only methods called by finalizeHandler
20
class LimitedHandler {
21
public:
22
- virtual void depends_on(sycl::event){};
+ virtual ~LimitedHandler() {}
23
+ virtual void depends_on(sycl::event) {}
24
25
virtual event finalize() {
26
cl::sycl::detail::EventImplPtr NewEvent =
27
std::make_shared<detail::event_impl>();
28
return sycl::detail::createSyclObjFromImpl<sycl::event>(NewEvent);
- };
29
+ }
30
};
31
32
// Needed to use EXPECT_CALL to verify depends_on that originally appends lst
0 commit comments