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

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

bug#46301: 28.0.50; cc-mode: add support for c++ lambda expression


From: Alan Mackenzie
Subject: bug#46301: 28.0.50; cc-mode: add support for c++ lambda expression
Date: Tue, 23 Feb 2021 19:19:28 +0000

Hello, Utkarsh.

On Thu, Feb 04, 2021 at 21:17:22 +0530, Utkarsh Singh wrote:
> Hi,

> This bugs only occurs when we assign lambda expression as default
> arguments in C++.  I know there are better ways of using lambda but I
> was just playing with both C++ and Emacs on a hobby project.

> Consider this C++ code:

> template <typename T>
> void bubble_sort(std :: vector<T> &v, bool cmp(T, T)=[](T a, T b){return a < 
> b;})
> {
>     bool swapped = true;
>     for(size_t i = 0; i < v.size() && swapped; i++) {
>       swapped = false;
>       for(size_t j = 0; j < v.size()-i; j++){
>           if(cmp(v[j+1], v[j])) {
>               std::swap(v[j], v[j+1]);
>               swapped=true;
>           }
>       }
>     }
> }

> Here cmp takes a lambda as default argument and if in c++-mode if we try
> using C-M-e(c-end-of-defun) it will get trapped into lambda.

But from the end of that lambda, a further C-M-e takes point to the end
of bubble_sort.

Why do you think this is a bug?  The lambda form is a function, it is at
the top level (i.e. not within braces), so why shouldn't C-M-e stop at
its end?  That's a genuine question, by the way, not a rhetorical one.

If anything, the rather unsystematic behaviour of C-M-a near this lambda
function is of more concern.  And there's the worry that this example
will break other places where it's assumed that braces cannot occur in
parameter lists.

But of all the languages there are, trust C++ to be awkward.  ;-)

> To solve this is added c-forward-to-nth

[ patch received with thanks, but snipped. ]

> --
> Utkarsh Singh

-- 
Alan Mackenzie (Nuremberg, Germany).





reply via email to

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