diff --git a/hyper.h b/hyper.h index 3b939709..2519e450 100644 --- a/hyper.h +++ b/hyper.h @@ -635,7 +635,7 @@ template struct walker { T *at; int spin; bool mirrored; - walker (T *at = NULL, int s = 0, bool m = false) : at(at), spin(s), mirrored(m) { } + walker (T *at = NULL, int s = 0, bool m = false) : at(at), spin(s), mirrored(m) { if(at) s = at->c.fix(s); } walker& operator += (int i) { spin = at->c.fix(spin+(mirrored?-i:i)); return (*this);