On Mon, Nov 5, 2018 at 2:39 PM Tim van Deurzen <t...@kompiler.org> wrote: > I've been getting to know my way around the c++ compiler front-end while > implementing the spaceship operator. To ensure this feature is part of > the next release I'm including my work so far as a patch. Testing and > development are still very much ongoing.
Thanks! > + /* FIXME check precedence of spaceship operator. */ It looks like spaceship has precedence between shift and the other relational operators: compare-expression: shift-expression compare-expression <=> shift-expression relational-expression: compare-expression relational-expression < compare-expression ... Jason