Fix missing 'inline' specifier in time_measure.h (#239)
authorAlpar Juttner <alpar@cs.elte.hu>
Thu, 05 Mar 2009 06:51:53 +0000
changeset 528097d7c4634ea
parent 526 07a549a6b9bf
child 529 304acfc5210e
child 530 0f40b9d26049
child 595 94387da47f79
Fix missing 'inline' specifier in time_measure.h (#239)
lemon/time_measure.h
     1.1 --- a/lemon/time_measure.h	Mon Feb 02 13:06:36 2009 +0100
     1.2 +++ b/lemon/time_measure.h	Thu Mar 05 06:51:53 2009 +0000
     1.3 @@ -202,7 +202,7 @@
     1.4      double realTime() const {return rtime;}
     1.5    };
     1.6  
     1.7 -  TimeStamp operator*(double b,const TimeStamp &t)
     1.8 +  inline TimeStamp operator*(double b,const TimeStamp &t)
     1.9    {
    1.10      return t*b;
    1.11    }