1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #18460 from alalek:build_warnings

This commit is contained in:
Alexander Alekhin
2020-09-30 13:23:05 +00:00
+4 -4
View File
@@ -735,11 +735,11 @@ public:
OpenCLExecutionContext() = default;
~OpenCLExecutionContext() = default;
OpenCLExecutionContext(const OpenCLExecutionContext& other) = default;
OpenCLExecutionContext(OpenCLExecutionContext&& other) = default;
OpenCLExecutionContext(const OpenCLExecutionContext&) = default;
OpenCLExecutionContext(OpenCLExecutionContext&&) = default;
OpenCLExecutionContext& operator=(const OpenCLExecutionContext& other) = default;
OpenCLExecutionContext& operator=(OpenCLExecutionContext&& other) = default;
OpenCLExecutionContext& operator=(const OpenCLExecutionContext&) = default;
OpenCLExecutionContext& operator=(OpenCLExecutionContext&&) = default;
/** Get associated ocl::Context */
Context& getContext() const;