Fix member variable type which is typedef in same class
Type spelling included all scopes. See foonathan/standardese#82.
This commit is contained in:
parent
b2121b19c2
commit
2b3ddf360b
2 changed files with 89 additions and 60 deletions
|
|
@ -24,7 +24,9 @@ using struct_=int;
|
|||
struct_ var2;
|
||||
|
||||
struct foo{
|
||||
int a;
|
||||
using my_int=int;
|
||||
|
||||
my_int a;
|
||||
|
||||
auto func(int)->int(*(*)(int))[42];
|
||||
|
||||
|
|
@ -66,7 +68,9 @@ struct_ var2;
|
|||
|
||||
struct foo
|
||||
{
|
||||
int a;
|
||||
using my_int = int;
|
||||
|
||||
my_int a;
|
||||
|
||||
auto func(int) -> int(*(*)(int))[42];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue