shadowvar cleanup

This commit is contained in:
Azaezel 2018-03-16 11:13:26 -05:00
parent 248c5e9e69
commit 5282b37d9f
3 changed files with 6 additions and 8 deletions

View file

@ -248,13 +248,13 @@ static void dumpFunction( Stream &stream,
const char* brief = dStrstr( doc, "@brief" );
if( !brief )
{
String brief = entry->getBriefDescription( &doc );
String briefStr = entry->getBriefDescription( &doc );
brief.trim();
if( !brief.isEmpty() )
briefStr.trim();
if( !briefStr.isEmpty() )
{
stream.writeText( "@brief " );
stream.writeText( brief );
stream.writeText(briefStr);
stream.writeText( "\r\n\r\n" );
}
}