X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAutopilot%2Fcomponent.cxx;h=1da236cc9c3f29f0613dac1b111f5c6285a05fbf;hb=ff91fec1bb4b59dc2a7084de2a5ab0469abb1f3e;hp=63ee6262a1b062b53a5226c1dea626ddb0d188de;hpb=2c1de98ef327f22781bf98e297be99f5121477a8;p=flightgear.git diff --git a/src/Autopilot/component.cxx b/src/Autopilot/component.cxx index 63ee6262a..1da236cc9 100644 --- a/src/Autopilot/component.cxx +++ b/src/Autopilot/component.cxx @@ -58,7 +58,7 @@ bool Component::configure( SGPropertyNode_ptr configNode ) bool Component::configure( const std::string & nodeName, SGPropertyNode_ptr configNode ) { - SG_LOG( SG_AUTOPILOT, SG_BULK, "Component::configure(" << nodeName << ")" << endl ); + SG_LOG( SG_AUTOPILOT, SG_BULK, "Component::configure(" << nodeName << ")" << std::endl ); if ( nodeName == "name" ) { _name = configNode->getStringValue(); @@ -97,7 +97,7 @@ bool Component::configure( const std::string & nodeName, SGPropertyNode_ptr conf return true; } // enable - SG_LOG( SG_AUTOPILOT, SG_BULK, "Component::configure(" << nodeName << ") [unhandled]" << endl ); + SG_LOG( SG_AUTOPILOT, SG_BULK, "Component::configure(" << nodeName << ") [unhandled]" << std::endl ); return false; }