From f1b921e75c93baf717b632c64fb59b1d5063df7c Mon Sep 17 00:00:00 2001
From: James Goppert <jgoppert@w7.hsl.dynalias.com>
Date: Wed, 24 Nov 2010 22:23:39 -0500
Subject: [PATCH] Changes from ends s to flush to avoid character.

---
 src/math/FGStateSpace.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/math/FGStateSpace.cpp b/src/math/FGStateSpace.cpp
index edfbffa..1524192 100644
--- a/src/math/FGStateSpace.cpp
+++ b/src/math/FGStateSpace.cpp
@@ -140,7 +140,7 @@ std::ostream &operator<<( std::ostream &out, const std::vector< std::vector<doub
             }
             else out << ",";
         }
-        out << std::ends;
+        out << std::flush;
     }
 }
 
@@ -157,7 +157,7 @@ std::ostream &operator<<( std::ostream &out, const std::vector<double> &vec )
         if ( i==nI-1 ) out << "]";
         else out <<  ";\n";
     }
-	out << std::ends;
+    out << std::flush;
 }
 
 
-- 
GitLab