This gives a syntax error in cppcheck 2.18: getMainQueue().queueAction([self=shared_from_this(), x, y] mutable { handle(x, y); }); I believe it even leads to failure to parse any lines that come after, and breaks analysis of anything including a file with this construct. Adding parentheses between the captures list and mutable keyword solves it: getMainQueue().queueAction([self=shared_from_this(), x, y] () mutable { handle(x, y); });
The Open file expert only searches among files in the current project, whereas I believe it would be a good addition to have the option to search among source files of all loaded projects (i.e. the project group). -Frank On Thu, Oct 5, 2023 at 10:29 PM Thomas Mueller twm@users.sourceforge.net wrote: Could you please be more specific? I don't understand what exactly you want. [feature-requests:#175] https://sourceforge.net/p/gexperts/feature-requests/175/ Open file expert: search within project group...
Open file expert: search within project group