Skip to content

Commit 56f175a

Browse files
committed
populating Record maintains base classes
#fix
1 parent 78a28c3 commit 56f175a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

example/external/url/mrdocs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ see-below:
3030
- 'boost::urls::grammar::see_below'
3131
- 'boost::urls::string_token::see_below'
3232

33+
# Metadata Extraction
34+
private-bases: false
35+
3336
# Generator
3437
generate: adoc
3538
base-url: https://www.github.com/boostorg/url/blob/develop/include/ # boost/url/url_view.hpp

src/lib/AST/ASTVisitor.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -896,14 +896,14 @@ populate(
896896

897897
// Extract direct bases. D->bases() will get the bases
898898
// from whichever declaration is the definition (if any)
899-
if(D->hasDefinition())
899+
if(D->hasDefinition() && I.Bases.empty())
900900
{
901901
for (const CXXBaseSpecifier& B : D->bases())
902902
{
903903
AccessSpecifier const access = B.getAccessSpecifier();
904904

905905
if (!config_->privateBases &&
906-
access == AccessSpecifier::AS_private)
906+
access == AS_private)
907907
{
908908
continue;
909909
}

0 commit comments

Comments
 (0)