Changeset 9433 in ntrip for trunk/BNC


Ignore:
Timestamp:
May 19, 2021, 1:29:07 PM (3 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppFilter.h

    r9431 r9433  
    135135    t_irc computeTrafoMatrix() {
    136136      if (((_AA2.t() * _AA2)).Determinant() == 0.0) {
    137         LOG << "(_AA2.t() * _AA2).inv() is singular" << endl;
     137        LOG << "(_AA2.t() * _AA2).inv() is singular" << std::endl;
    138138        return failure;
    139139      }
     
    145145      for (int rr = 0; rr < nRow; rr++) {
    146146        for (int cc = 0; cc < nCol; cc++) {
    147           LOG << setw(6) << setprecision(3) << X[rr][cc] << " ;";
     147          LOG << std::setw(6) << std::setprecision(3) << X[rr][cc] << " ;";
    148148        }
    149         LOG << endl;
    150       }
    151       LOG << endl;
     149        LOG << std::endl;
     150      }
     151      LOG << std::endl;
    152152    }
    153153  private:
Note: See TracChangeset for help on using the changeset viewer.