On Oct 24, 2013, at 2:05 AM, Jan-Benedict Glaw <jbg...@lug-owl.de> wrote: > - enum raw_str_phase { RAW_STR_PREFIX, RAW_STR, RAW_STR_SUFFIX }; > - raw_str_phase phase = RAW_STR_PREFIX; > + enum raw_str_phase { RAW_STR_PREFIX, RAW_STR, RAW_STR_SUFFIX } phase = > RAW_STR_PREFIX;
Since no one else chimed in… seems obvious to me… though the line is too long. Better likely would be to just say: enum raw_str_phase phase = RAW_STR_PREFIX;