dnn: reduce set of ignored warnings

This commit is contained in:
Alexander Alekhin
2018-11-14 20:25:23 +00:00
committed by Alexander Alekhin
parent 02d2cc58d7
commit 96c71dd3d2
42 changed files with 195 additions and 178 deletions
+1 -1
View File
@@ -423,7 +423,7 @@ class CppHeaderParser(object):
# it means class methods, not instance methods
decl_str = self.batch_replace(decl_str, [("static inline", ""), ("inline", ""),\
("CV_EXPORTS_W", ""), ("CV_EXPORTS", ""), ("CV_CDECL", ""), ("CV_WRAP ", " "), ("CV_INLINE", ""),
("CV_DEPRECATED", "")]).strip()
("CV_DEPRECATED", ""), ("CV_DEPRECATED_EXTERNAL", "")]).strip()
if decl_str.strip().startswith('virtual'):