When programming C++ in Visual Studio, it insists on giving me these awful indentations on access modifiers - my condolences if anyone actually likes them this way ;) (a joke folks!)
public class MyClass
{
public:
MyClass();
~MyClass();
int wowAnInt();
}
Needless to say, I want this:
public class MyClass
{
public:
MyClass();
~MyClass();
int wowAnInt();
}
Is there any way to achieve this using anything (I've got ReSharper and Highlighter) or perhaps vanilla VS?
{
etc everyone has their preference! – Fist