mirror of
https://github.com/nasa/trick.git
synced 2025-06-14 21:28:17 +00:00
Change std::endl to linefeed as appropriate. (#773)
* Fix endl issue in variable server JSON generation. Ref #766 * Change std::endl to line feed as appropraite. #766 * Change std::endl to line feed in MemoryManager as appropriate. #766 * Change std::endl to linefeed as appropriate. #766 * Change std::endl to line feed as appropriate in JSONVariableServer. #766 * Change std::endl to line feed as appropriate in still more files. #766
This commit is contained in:
@ -183,10 +183,10 @@ int Trick::JSONVariableServer::restart() {
|
||||
}
|
||||
|
||||
void Trick::JSONVariableServer::dump( std::ostream & oss ) {
|
||||
oss << "Trick::JSONVariableServer (" << name << ")" << std::endl ;
|
||||
oss << " enabled = " << enabled << std::endl ;
|
||||
oss << " source_address = " << source_address << std::endl ;
|
||||
oss << " port = " << port << std::endl ;
|
||||
oss << "Trick::JSONVariableServer (" << name << ")\n";
|
||||
oss << " enabled = " << enabled << "\n";
|
||||
oss << " source_address = " << source_address << "\n";
|
||||
oss << " port = " << port << "\n";
|
||||
oss << " user_port_requested = " << user_port_requested << std::endl ;
|
||||
Trick::ThreadBase::dump(oss) ;
|
||||
}
|
||||
|
Reference in New Issue
Block a user