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:
jmpenn
2019-05-13 16:05:01 -05:00
committed by GitHub
parent 3187dd9012
commit 3f35388b49
11 changed files with 68 additions and 67 deletions

View File

@ -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) ;
}