bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#24431: 25.1.50; Wrong indentation in C++ mode when calling construct


From: Matthias Meulien
Subject: bug#24431: 25.1.50; Wrong indentation in C++ mode when calling constructors with braces
Date: Thu, 15 Sep 2016 14:09:24 +0200

Hi Alan,

Sorry, my report lacks of precision.

set_line(line_t(point_t(0.4, 0.2),
                point_t(0.2, 0.5)));


set_line(line_t{point_t{0.4, 0.2},
      point_t{0.2, 0.5}}); // wrong identation

What, exactly, is wrong about that indentation?  What would you like to see there, and why?

I am expecting to see the same indentation whatever I'm using, brackets or parenthesis; That is:

set_line(line_t{point_t{0.4, 0.2},
                point_t{0.2, 0.5}});
-- 
Matthias

reply via email to

[Prev in Thread] Current Thread [Next in Thread]