You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is redirected from [vscode-cpptools](https://github.com/microsoft/vscode-cpptools/issues/12382)
```C++
std::function<void()> A;
std::function<void()> *B;
B = &(A = [&B]()
{ if(B)B=nullptr; });
auto a = []()
{ int a=1;
a=2; };
```
Formatting should add spaces to B=nullptr in the last line. But in fact, spaces are not added after formatting:
![image](https://github.com/user-attachments/assets/d6853ac6-f1cd-490f-8abb-77ac4139e906)
This issue is redirected from vscode-cpptools
Formatting should add spaces to B=nullptr in the last line. But in fact, spaces are not added after formatting:
The text was updated successfully, but these errors were encountered: