File tree 4 files changed +51
-1
lines changed
4 files changed +51
-1
lines changed Original file line number Diff line number Diff line change @@ -1835,8 +1835,13 @@ class ASTVisitor
1835
1835
1836
1836
I.Name = extractName (D);
1837
1837
1838
+ // When a symbol has a dependency on a typedef, we also
1839
+ // consider the symbol to have a dependency on the aliased
1840
+ // type. Therefore, we propagate the current dependency mode
1841
+ // when building the TypeInfo for the aliased type
1838
1842
I.Type = buildTypeInfo (
1839
- D->getUnderlyingType ());
1843
+ D->getUnderlyingType (),
1844
+ currentMode ());
1840
1845
1841
1846
#if 0
1842
1847
if(I.Type.Name.empty())
Original file line number Diff line number Diff line change
1
+ namespace N
2
+ {
3
+ template <typename T>
4
+ struct A { };
5
+
6
+ template <typename T>
7
+ using B = A<T>;
8
+
9
+ template <typename T>
10
+ using C = B<T>;
11
+
12
+ struct D { };
13
+ }
14
+
15
+ struct E : N::C<int > { };
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <mrdocs xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://github.com/cppalliance/mrdocs/raw/develop/mrdocs.rnc" >
4
+ <namespace id =" //////////////////////////8=" >
5
+ <struct name =" E" id =" KJWEqOD/QXinlGIqVHqmIlA5Z6E=" >
6
+ <file path =" dependency-propagation.cpp" line =" 15" class =" def" />
7
+ <base >
8
+ <type id =" 1aINBgFfB9zQVkEDJdB0DyLWTmQ=" name =" N::C< int> " />
9
+ </base >
10
+ </struct >
11
+ <namespace name =" N" id =" rjlMNXAaWNMkQYMTJzRA1DR0DiE=" >
12
+ <alias name =" C" id =" 1aINBgFfB9zQVkEDJdB0DyLWTmQ=" >
13
+ <file path =" dependency-propagation.cpp" line =" 10" class =" def" />
14
+ <type id =" YZjBn7yW7NyL8yCKqswVvbiptNM=" name =" N::B< T> " />
15
+ </alias >
16
+ <alias name =" B" id =" YZjBn7yW7NyL8yCKqswVvbiptNM=" >
17
+ <file path =" dependency-propagation.cpp" line =" 7" class =" def" />
18
+ <type id =" P3wHAbrIf4CGxTZs+lXT5a3t2K0=" name =" N::A< T> " />
19
+ </alias >
20
+ <struct name =" A" id =" P3wHAbrIf4CGxTZs+lXT5a3t2K0=" >
21
+ <file path =" dependency-propagation.cpp" line =" 4" class =" def" />
22
+ </struct >
23
+ </namespace >
24
+ </namespace >
25
+ </mrdocs >
Original file line number Diff line number Diff line change
1
+ filters :
2
+ symbols :
3
+ exclude :
4
+ - ' N'
5
+ referenced-declarations : dependency
You can’t perform that action at this time.
0 commit comments