Commit dfb5dbae authored by Kaitlyn Lee's avatar Kaitlyn Lee
Browse files

Added comment about nan and -nan.

parent 8907737f
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1012,6 +1012,9 @@ namespace Isis {
      temp += " ";
    }
    temp += "]";
    // On some operating systems, -nan was being outputted. 
    // Because this method is only used as a cout in our tests, we do not 
    // care about the difference between nan and -nan; they are the same in this case.
    temp.replace(QRegExp("-nan"), "nan");
    std::cout<<temp<<std::endl;
  }