Indenting issue after access specifiers in Visual

2019-06-16 05:32发布

I am using Visual Studio Express 2013

After I use an access specifier, I want Visual Studio to automatically indent my members another 4 spaces further than my access specifier; but instead, it keeps the members in line with the access specifier. Is there a way to fix this?

Example: This is what is does:

class MyClass {
    public:
    int myInt;
};

This is what I want:

class MyClass {
    public:
        int myInt;
};

1条回答
Fickle 薄情
2楼-- · 2019-06-16 06:18

No, there isn't a way to do this in Visual Studio.

However, a feature request has been made.

查看更多
登录 后发表回答