COIN-OR::LEMON - Graph Library

Ticket #239: 097d7c4634ea.patch

File 097d7c4634ea.patch, 562 bytes (added by Alpar Juttner, 16 years ago)
  • lemon/time_measure.h

    # HG changeset patch
    # User Alpar Juttner <alpar@cs.elte.hu>
    # Date 1236235913 0
    # Node ID 097d7c4634ea06546ccd272ebafe5f7e74709741
    # Parent  07a549a6b9bf286156a00262bf1dd189781ba0b0
    Fix missing 'inline' specifier in time_measure.h (#239)
    
    diff --git a/lemon/time_measure.h b/lemon/time_measure.h
    a b  
    202202    double realTime() const {return rtime;}
    203203  };
    204204
    205   TimeStamp operator*(double b,const TimeStamp &t)
     205  inline TimeStamp operator*(double b,const TimeStamp &t)
    206206  {
    207207    return t*b;
    208208  }