Mir

Code review comment for lp:~vanvugt/mir/clang

Revision history for this message
Alan Griffiths (alan-griffiths) wrote :

> I think we're wasting time here.
>
> At the binary level, both:
> Displacement const disp;
> and
> Displacement disp;
> are identical.

And, with any sane compiler so is:

Displacement const disp = Displacement();
auto const disp = Displacement();
auto const& disp = Displacement();

etc.

« Back to merge proposal