Fix member variable type which is typedef in same class

Type spelling included all scopes. See foonathan/standardese#82.
This commit is contained in:
Jonathan Müller 2017-12-07 20:39:04 +01:00
commit 2b3ddf360b
2 changed files with 89 additions and 60 deletions

View file

@ -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];