Commit 74c58216 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed comparison between signed and unsigned types in IterativeSolverMonitor

parent 0da753df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ void IterativeSolverMonitor< Real, Index > :: refresh( bool force )
      }

      if( this->stage.length() && free > 5 ) {
         if( this->stage.length() <= free - 2 ) {
         if( (int) this->stage.length() <= free - 2 ) {
            std::cout << "  " << this->stage;
            free -= ( 2 + this->stage.length() );
         }