Astyle C++ enum class indentation -


is there way of getting astyle indent enum class elements same depth?

i getting following:

enum class test {     test1 = 1,             test2 = 2,                     test3 = 3,                             test4 = 4                             }; 

whereas want like:

enum class test {     test1 = 1,     test2 = 2,     test3 = 3,     test4 = 4 }; 

large enums indented far right.

current options kr style, options: s l c n.


Comments

Popular posts from this blog

c# - HttpResponseMessage System.InvalidOperationException -

sql - Postgresql error: "failed to find conversion function from unknown to text" -