When I want to print something like
Type* name;
at some point during line input (as soon as I type a semicolon), VS2017 automatically solves the space in
Type * name;
After I deleted the space for the first time, the IDE has not tried this again for some time. The behavior started again for some reason, when I typed a pointer type variable, but immediately typing another line like this, I didn’t repeat the authorization ...
After some testing, auto-spacing seems to occur in a class where the first line of code after the access specifier becomes a victim if it matches Type* name; .
class Foo { private: Type* name;
I do not like it. How can I put an end to this blasphemy?
source share