uncrustify
uncrustify copied to clipboard
Objective C++ lambda not being parsed correctly
input
const auto test = [=](NSString *param) {};
output
const auto test = [ = ] (NSString * param) {};
config: https://pastebin.com/DU2e0VXB
Issue is objective c has additional bracket logic, but is incorrectly applied to lambda capture lists.