]> git.mxchange.org Git - flightgear.git/commitdiff
Fix MSVC10 compilation errors by using streams.
authorRichard Harrison <rjh@zaretto.com>
Thu, 12 May 2016 10:05:28 +0000 (12:05 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 22 Sep 2016 21:27:34 +0000 (23:27 +0200)
src/MultiPlayer/multiplaymgr.cxx

index de125aa0e2a42b6e53855fb4d22cd387884a4a53..b78c452a03a3a126313b7026f3ed690fb94176f7 100644 (file)
@@ -816,7 +816,7 @@ FGMultiplayMgr::SendMyPosition(const FGExternalMotionData& motionInfo)
 
         if (ptr + 2 >= msgEnd)
         {
-            SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer packet truncated prop id: "+std::to_string((*it)->id));
+            SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer packet truncated prop id: " << (*it)->id);
             break;
         }
 
@@ -855,7 +855,7 @@ FGMultiplayMgr::SendMyPosition(const FGExternalMotionData& motionInfo)
                 if (len >= MAX_TEXT_SIZE)
                 {
                   len = MAX_TEXT_SIZE - 1;
-                  SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer property truncated at MAX_TEXT_SIZE in string "+std::to_string((*it)->id));
+                  SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer property truncated at MAX_TEXT_SIZE in string " << (*it)->id);
                 }
 
                 // XXX This should not be using 4 bytes per character!
@@ -863,7 +863,7 @@ FGMultiplayMgr::SendMyPosition(const FGExternalMotionData& motionInfo)
                 // on the floor.
                 if (ptr + 2 + ((len + 3) & ~3) >= msgEnd)
                 {
-                    SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer property not sent (no room) string "+std::to_string((*it)->id));
+                    SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer property not sent (no room) string " << (*it)->id);
                     goto escape;
                 }
                 //cout << "String length unint32: " << len << "\n";
@@ -878,7 +878,7 @@ FGMultiplayMgr::SendMyPosition(const FGExternalMotionData& motionInfo)
                   {
                     if (ptr + 2 >= msgEnd)
                     {
-                      SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer packet truncated in string "+std::to_string((*it)->id)+" lcount "+std::to_string(lcount));
+                      SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer packet truncated in string " << (*it)->id << " lcount " << lcount);
                       break;
                     }
                     *ptr++ = XDR_encode_int8(*lcharptr);
@@ -892,7 +892,7 @@ FGMultiplayMgr::SendMyPosition(const FGExternalMotionData& motionInfo)
                   {
                     if (ptr + 2 >= msgEnd)
                     {
-                      SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer packet truncated in string "+std::to_string((*it)->id)+" lcount "+std::to_string(lcount));
+                      SG_LOG(SG_NETWORK, SG_ALERT, "Multiplayer packet truncated in string " << (*it)->id << " lcount " << lcount);
                       break;
                     }
                     *ptr++ = XDR_encode_int8(0);