# 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
|
|
202 | 202 | double realTime() const {return rtime;} |
203 | 203 | }; |
204 | 204 | |
205 | | TimeStamp operator*(double b,const TimeStamp &t) |
| 205 | inline TimeStamp operator*(double b,const TimeStamp &t) |
206 | 206 | { |
207 | 207 | return t*b; |
208 | 208 | } |