Index: trunk/BNC/src/PPP/pppFilter.h
===================================================================
--- trunk/BNC/src/PPP/pppFilter.h	(revision 9432)
+++ trunk/BNC/src/PPP/pppFilter.h	(revision 9433)
@@ -135,5 +135,5 @@
     t_irc computeTrafoMatrix() {
       if (((_AA2.t() * _AA2)).Determinant() == 0.0) {
-        LOG << "(_AA2.t() * _AA2).inv() is singular" << endl;
+        LOG << "(_AA2.t() * _AA2).inv() is singular" << std::endl;
         return failure;
       }
@@ -145,9 +145,9 @@
       for (int rr = 0; rr < nRow; rr++) {
         for (int cc = 0; cc < nCol; cc++) {
-          LOG << setw(6) << setprecision(3) << X[rr][cc] << " ;";
+          LOG << std::setw(6) << std::setprecision(3) << X[rr][cc] << " ;";
         }
-        LOG << endl;
-      }
-      LOG << endl;
+        LOG << std::endl;
+      }
+      LOG << std::endl;
     }
   private:
