X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAutopilot%2Fcomponent.cxx;h=1da236cc9c3f29f0613dac1b111f5c6285a05fbf;hb=ff91fec1bb4b59dc2a7084de2a5ab0469abb1f3e;hp=bdf6ecc21d994aed3a013eec14b7a41d9c342a81;hpb=52ac173257bf9cc780f0faee5049314442083140;p=flightgear.git diff --git a/src/Autopilot/component.cxx b/src/Autopilot/component.cxx index bdf6ecc21..1da236cc9 100644 --- a/src/Autopilot/component.cxx +++ b/src/Autopilot/component.cxx @@ -23,6 +23,7 @@ #include "component.hxx" #include
#include +#include using namespace FGXMLAutopilot; @@ -57,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(); @@ -96,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; }