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 a9c6892 commit c6a896eCopy full SHA for c6a896e
unified-runtime/source/loader/layers/sanitizer/msan/msan_interceptor.hpp
@@ -160,6 +160,10 @@ struct MsanRuntimeDataWrapper {
160
MsanRuntimeDataWrapper(ur_context_handle_t Context, ur_device_handle_t Device)
161
: Context(Context), Device(Device) {}
162
163
+ MsanRuntimeDataWrapper(const MsanRuntimeDataWrapper &) = delete;
164
+
165
+ MsanRuntimeDataWrapper &operator=(const MsanRuntimeDataWrapper &) = delete;
166
167
~MsanRuntimeDataWrapper();
168
169
MsanRuntimeData *getDevicePtr() {
0 commit comments