From b7f784563ce038152c18b737b5670f1bf8e0486d Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Sun, 25 Apr 2021 14:39:54 -0500 Subject: [PATCH] g13d: Fix initialization order --- g13d/g13_stick.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/g13d/g13_stick.cc b/g13d/g13_stick.cc index cb550c1..082e3c2 100644 --- a/g13d/g13_stick.cc +++ b/g13d/g13_stick.cc @@ -104,7 +104,7 @@ void G13_StickZone::test(const G13_ZoneCoord &loc) { G13_StickZone::G13_StickZone(G13_Stick &stick, const std::string &name, const G13_ZoneBounds &b, G13_ActionPtr action) - : G13_Actionable(stick, name), _bounds(b), _active(false) { + : G13_Actionable(stick, name), _active(false), _bounds(b) { set_action(action); }