From 24a2febd59db242c92f9c6b4655d11c511a3c567 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Wed, 30 Nov 2016 21:17:30 +0100 Subject: [PATCH] fix(build): GCC name error --- include/modules/i3.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/modules/i3.hpp b/include/modules/i3.hpp index 6d214255..f2b035f0 100644 --- a/include/modules/i3.hpp +++ b/include/modules/i3.hpp @@ -22,13 +22,13 @@ namespace modules { }; struct workspace { - explicit workspace(int index, state state_, label_t&& label) + explicit workspace(int index, enum state state_, label_t&& label) : index(index), state(state_), label(forward(label)) {} operator bool(); int index; - state state; + enum state state; label_t label; };