auto v1=xxx.yyy;
It would be nice if there was an easy way to replace 'auto' with the actual type. Or perhaps just be able to copy the fully expanded type name to the clipboard.
This is useful for example if the above needs to be replaced by this:
TVery<TComplex<Thing> > > v1;
if(yes)
{
v1=xxx.yyy;
}
else
{
v1=yyy.xx;
}