From 0ec65b8c6438b6d12f17487fdc4c870fe37c7caa Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 11 Jul 2019 13:12:46 +0000 Subject: Revert "COMPMID-2425: Fix memory leak reported by coverity" This reverts commit 74cd112addebc7678cb763cc1cb173feb0e61bb2. Reason for revert: Makes platforms to hang in some cases Change-Id: I8f25f6976fec9fbce0869b7b27502e4895306b5f Reviewed-on: https://review.mlplatform.org/c/1521 Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/core/CL/OpenCL.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'arm_compute/core/CL') diff --git a/arm_compute/core/CL/OpenCL.h b/arm_compute/core/CL/OpenCL.h index fbf603ea00..fc7083d276 100644 --- a/arm_compute/core/CL/OpenCL.h +++ b/arm_compute/core/CL/OpenCL.h @@ -64,17 +64,6 @@ private: void load_symbols(void *handle); public: - /** Prevent instances of this class from being copied (As this class contains pointers) */ - CLSymbols(const CLSymbols &) = delete; - /** Prevent instances of this class from being copied (As this class contains pointers) */ - CLSymbols &operator=(const CLSymbols &) = delete; - /** Allow instances of this class to be move constructed */ - CLSymbols(CLSymbols &&) = default; - /** Allow instances of this class to be moved */ - CLSymbols &operator=(CLSymbols &&) = default; - /** Destructor */ - ~CLSymbols(); - /** Get the static instance of CLSymbols. * * @return The static instance of CLSymbols. @@ -149,7 +138,6 @@ public: private: std::pair _loaded{ false, false }; - void *handle{ nullptr }; }; } // namespace arm_compute #endif /* __ARM_COMPUTE_OPENCL_H__ */ -- cgit v1.2.1