Is there a way of getting Astyle to indent enum class elements to the same depth?
I am getting the following:
enum class test {
test1 = 1,
test2 = 2,
test3 = 3,
test4 = 4
};
whereas I want something like:
enum class test {
test1 = 1,
test2 = 2,
test3 = 3,
test4 = 4
};
Large enums are indented too far to the right.
Current options are kr style, options: S L C N.