Commit 4352e1ea authored by Alexander Alekhin's avatar Alexander Alekhin

line_descriptor: apply CV_OVERRIDE/CV_FINAL

parent f8eeab57
......@@ -253,13 +253,13 @@ class CV_EXPORTS BinaryDescriptor : public Algorithm
@param fn source FileNode file
*/
virtual void read( const cv::FileNode& fn );
virtual void read( const cv::FileNode& fn ) CV_OVERRIDE;
/** @brief Store parameters to a FileStorage object
@param fs output FileStorage file
*/
virtual void write( cv::FileStorage& fs ) const;
virtual void write( cv::FileStorage& fs ) const CV_OVERRIDE;
/** @brief Requires line detection
......@@ -1076,7 +1076,7 @@ static Ptr<BinaryDescriptorMatcher> createBinaryDescriptorMatcher();
/** @brief Clear dataset and internal data
*/
void clear();
void clear() CV_OVERRIDE;
/** @brief Constructor.
......
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