Unverified Commit 9a26da4d authored by gsn9's avatar gsn9 Committed by GitHub
Browse files

fixed build warnings on bigsur OS (#4898)

parent 69276a78
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -57,8 +57,8 @@ namespace Isis {
   */
  void OriginalXmlLabel::fromBlob(Isis::Blob blob) {
    QString errorMessage;
    int errorLine;
    int errorColumn;
    int errorLine = 0;
    int errorColumn = 0;

    if ( !m_originalLabel.setContent( QByteArray(blob.getBuffer(), blob.Size()) ) ) {
      QString msg = "XML read/parse error when parsing original label. "
+1 −1
Original line number Diff line number Diff line
@@ -137,7 +137,7 @@ namespace Isis {
       flag  -> type of solutions sought: 1 decomposition only, 2 decomposition and solve, 3 decompose solve and inverse a
     */

    if (flag < 1 && flag > 3)
    if (flag < 1 || flag > 3)
      return NOT_SOLVABLE;

    /*************** STEP 1:  DECOMPOSE THE A MATRIX ***************/