Commit e251ed77 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #9122 from ivsgroup:fix_msvc_virtual_destructor

parents 0e6ebafd 309c9621
...@@ -7,6 +7,11 @@ ...@@ -7,6 +7,11 @@
#ifndef OPENCV_CORE_BUFFER_POOL_HPP #ifndef OPENCV_CORE_BUFFER_POOL_HPP
#define OPENCV_CORE_BUFFER_POOL_HPP #define OPENCV_CORE_BUFFER_POOL_HPP
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable: 4265)
#endif
namespace cv namespace cv
{ {
...@@ -28,4 +33,8 @@ public: ...@@ -28,4 +33,8 @@ public:
} }
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#endif // OPENCV_CORE_BUFFER_POOL_HPP #endif // OPENCV_CORE_BUFFER_POOL_HPP
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment