Added 4 void declaration lines to remove compiler warning.
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1141 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
a6028748b2
commit
1fcba1aa3b
1 changed files with 4 additions and 0 deletions
|
@ -213,6 +213,7 @@ void FormatTest( void )
|
|||
}
|
||||
catch ( const ::std::logic_error & ex )
|
||||
{
|
||||
(void)ex;
|
||||
assert( true );
|
||||
}
|
||||
result.clear();
|
||||
|
@ -225,6 +226,7 @@ void FormatTest( void )
|
|||
}
|
||||
catch ( const ::std::logic_error & ex )
|
||||
{
|
||||
(void)ex;
|
||||
assert( true );
|
||||
}
|
||||
result.clear();
|
||||
|
@ -237,6 +239,7 @@ void FormatTest( void )
|
|||
}
|
||||
catch ( const ::std::logic_error & ex )
|
||||
{
|
||||
(void)ex;
|
||||
assert( true );
|
||||
}
|
||||
result.clear();
|
||||
|
@ -249,6 +252,7 @@ void FormatTest( void )
|
|||
}
|
||||
catch ( const ::std::logic_error & ex )
|
||||
{
|
||||
(void)ex;
|
||||
assert( true );
|
||||
}
|
||||
result.clear();
|
||||
|
|
Loading…
Reference in a new issue