shadowvar cleanup

This commit is contained in:
Azaezel 2018-03-16 11:13:26 -05:00
parent f9aa23f9c5
commit 21b82b737d
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" );
}
}