Added lines to make type of stdout clear to compiler.
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1140 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
6d08c064e6
commit
a6028748b2
1 changed files with 4 additions and 2 deletions
|
@ -69,7 +69,8 @@ namespace Loki
|
|||
::std::string buffer;
|
||||
const PrintfState< ::std::string &, char > state1( buffer, format );
|
||||
::std::fwrite( buffer.c_str(), 1, buffer.size(), stdout );
|
||||
PrintfState< std::FILE *, char > printState2 = state1.ChangeDevice( stdout );
|
||||
::std::FILE * f = stdout;
|
||||
PrintfState< std::FILE *, char > printState2( state1.ChangeDevice( f ) );
|
||||
return printState2;
|
||||
}
|
||||
|
||||
|
@ -77,7 +78,8 @@ namespace Loki
|
|||
::std::string buffer;
|
||||
const PrintfState< ::std::string &, char > state1( buffer, format.c_str() );
|
||||
::std::fwrite( buffer.c_str(), 1, buffer.size(), stdout );
|
||||
PrintfState< std::FILE *, char > printState2 = state1.ChangeDevice( stdout );
|
||||
::std::FILE * f = stdout;
|
||||
PrintfState< std::FILE *, char > printState2( state1.ChangeDevice( f ) );
|
||||
return printState2;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue