From a4111fab39131f90602af948efe0667e6f7695fe Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Tue, 11 Dec 2018 14:45:27 -0500 Subject: [PATCH] Fixed -Wextra-semi warnings in public headers --- modules/features2d/include/opencv2/features2d.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/features2d/include/opencv2/features2d.hpp b/modules/features2d/include/opencv2/features2d.hpp index 11d410787b..c995fbf01a 100644 --- a/modules/features2d/include/opencv2/features2d.hpp +++ b/modules/features2d/include/opencv2/features2d.hpp @@ -289,14 +289,14 @@ public: /** @brief Set detection threshold. @param threshold AGAST detection threshold score. */ - CV_WRAP virtual void setThreshold(int threshold) { CV_UNUSED(threshold); return; }; - CV_WRAP virtual int getThreshold() const { return -1; }; + CV_WRAP virtual void setThreshold(int threshold) { CV_UNUSED(threshold); return; } + CV_WRAP virtual int getThreshold() const { return -1; } /** @brief Set detection octaves. @param octaves detection octaves. Use 0 to do single scale. */ - CV_WRAP virtual void setOctaves(int octaves) { CV_UNUSED(octaves); return; }; - CV_WRAP virtual int getOctaves() const { return -1; }; + CV_WRAP virtual void setOctaves(int octaves) { CV_UNUSED(octaves); return; } + CV_WRAP virtual int getOctaves() const { return -1; } }; /** @brief Class implementing the ORB (*oriented BRIEF*) keypoint detector and descriptor extractor