From acc8589083fb761cc4fe0cca9e87f8013f009504 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Mon, 17 Jul 2017 13:31:47 +0300 Subject: [PATCH] core: clarify documentation of cv::Mat::deallocate() method --- modules/core/include/opencv2/core/mat.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/include/opencv2/core/mat.hpp b/modules/core/include/opencv2/core/mat.hpp index 722d5dba13..0338ab9ebc 100644 --- a/modules/core/include/opencv2/core/mat.hpp +++ b/modules/core/include/opencv2/core/mat.hpp @@ -1468,7 +1468,7 @@ public: */ void release(); - //! deallocates the matrix data + //! internal use function, consider to use 'release' method instead; deallocates the matrix data void deallocate(); //! internal use function; properly re-allocates _size, _step arrays void copySize(const Mat& m);