Is there a way to change VS2010 indentation rules for C++?
Basically I just want to remove the automatic indentation for the contents of a namespace.
From:
namespace name {
//contents automatically indented
class MyClass
{
//...
};
}
to
namespace name {
//contents automatically indented
class MyClass
{
//...
};
}