Merge pull request #18460 from alalek:build_warnings

pull/18477/head
Alexander Alekhin 4 years ago
commit fc1a156262
  1. 8
      modules/core/include/opencv2/core/ocl.hpp

@ -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;

Loading…
Cancel
Save