mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-22 23:59:59 +01:00
Programming style improvement: following Cppcheck suggestions.
This commit is contained in:
@@ -225,8 +225,8 @@ std::ostream& operator<<( std::ostream & os, const ReceivedBundle& b )
|
||||
for( ReceivedBundle::const_iterator i = b.ElementsBegin();
|
||||
i != b.ElementsEnd(); ++i ){
|
||||
if( i->IsBundle() ){
|
||||
ReceivedBundle b(*i);
|
||||
os << b << "\n";
|
||||
ReceivedBundle rb(*i);
|
||||
os << rb << "\n";
|
||||
}else{
|
||||
ReceivedMessage m(*i);
|
||||
for( int j=0; j < indent; ++j )
|
||||
|
||||
Reference in New Issue
Block a user