File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ see-below:
30
30
- ' boost::urls::grammar::see_below'
31
31
- ' boost::urls::string_token::see_below'
32
32
33
+ # Metadata Extraction
34
+ private-bases : false
35
+
33
36
# Generator
34
37
generate : adoc
35
38
base-url : https://www.github.com/boostorg/url/blob/develop/include/ # boost/url/url_view.hpp
Original file line number Diff line number Diff line change @@ -896,14 +896,14 @@ populate(
896
896
897
897
// Extract direct bases. D->bases() will get the bases
898
898
// from whichever declaration is the definition (if any)
899
- if (D->hasDefinition ())
899
+ if (D->hasDefinition () && I. Bases . empty () )
900
900
{
901
901
for (const CXXBaseSpecifier& B : D->bases ())
902
902
{
903
903
AccessSpecifier const access = B.getAccessSpecifier ();
904
904
905
905
if (!config_->privateBases &&
906
- access == AccessSpecifier:: AS_private)
906
+ access == AS_private)
907
907
{
908
908
continue ;
909
909
}
You can’t perform that action at this time.
0 commit comments