Fix typo preventing to build under gcc4.
This commit is contained in:
parent
e41a0338f1
commit
4c2b3ed86c
|
@ -294,7 +294,7 @@ namespace gloox
|
|||
while( output.empty() || value > 0 )
|
||||
{
|
||||
|
||||
output.insert((0, 1, static_cast<char>( value % base + '0' ) );
|
||||
output.insert( 0, 1, static_cast<char>( value % base + '0' ));
|
||||
value /= base;
|
||||
}
|
||||
|
||||
|
|
Ŝarĝante…
Reference in New Issue