diff --git a/compilerplugins/clang/dllmacro.cxx b/compilerplugins/clang/dllmacro.cxx index 538203f88942..66664888419c 100644 --- a/compilerplugins/clang/dllmacro.cxx +++ b/compilerplugins/clang/dllmacro.cxx @@ -76,7 +76,8 @@ bool DllMacro::VisitNamedDecl(NamedDecl const * decl) { << p->getSourceRange(); } } - else if (a->getVisibility() == VisibilityAttr::Default) { + else if (a->getVisibility() == VisibilityAttr::Default && !a->isInherited()) + { auto p = dyn_cast(decl); if (p && p->isCompleteDefinition() && !p->getDescribedClassTemplate()) { // don't know what these macros mean, leave them alone