demo: make Lazy_value::dst() const

This commit is contained in:
Norman Feske 2015-11-12 14:09:39 +01:00 committed by Christian Helmuth
parent 0ab49dff3a
commit 6177424fa6
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class Lazy_value
_accel = 1;
}
T dst() { return _dst; }
T dst() const { return _dst; }
void assign(T value) { _curr = value; }