Commit 475fdaaa authored by Jeannie Backer's avatar Jeannie Backer
Browse files

PROG:Fixed error on previous merge.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@6963 41f8697f-d340-4b68-9986-7bafba869bb8
parent e500f1b0
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -1790,8 +1790,7 @@ namespace Isis {
   * 
   */
  QDebug operator<<(QDebug dbg, const LinearAlgebra::Vector &vector) {
    QDebugStateSaver saver(dbg);
    dbg.noquote() << toString(vector);
    dbg.nospace() << toString(vector);
    return dbg;
  }

@@ -1808,13 +1807,12 @@ namespace Isis {
   * 
   */
  QDebug operator<<(QDebug dbg, const LinearAlgebra::Matrix &matrix) {
    QDebugStateSaver saver(dbg);
    for (unsigned int i = 0; i < matrix.size1(); i++) {
      dbg.noquote() << "    ";
      dbg.nospace() << "    ";
      for (unsigned int j = 0; j < matrix.size2(); j++) {
        dbg.noquote() << toString(matrix(i, j), 15) << "     ";
        dbg.nospace() << toString(matrix(i, j), 15) << "     ";
      }
      dbg.noquote() << endl;
      dbg.nospace() << endl;
    }
    return dbg;
  }