From 2f9351d995d9c3b55a91848e4ef803e757335ed5 Mon Sep 17 00:00:00 2001 From: OrestChura Date: Thu, 10 Oct 2019 18:48:27 +0300 Subject: [PATCH] Fix warning issue: - unnecessary extra semicolon after member function definition removed --- modules/gapi/include/opencv2/gapi/gkernel.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gapi/include/opencv2/gapi/gkernel.hpp b/modules/gapi/include/opencv2/gapi/gkernel.hpp index 4939892237..66f3a2ec6c 100644 --- a/modules/gapi/include/opencv2/gapi/gkernel.hpp +++ b/modules/gapi/include/opencv2/gapi/gkernel.hpp @@ -237,7 +237,7 @@ public: { \ struct G_ID_HELPER_CLASS(Class) \ { \ - static constexpr const char * id() {return Id;}; \ + static constexpr const char * id() {return Id;} \ }; \ }