Constructor initializers formatting
已回答
I like to format my constructors as follows, with each member being at the same indent level as the constructor declaration. I can't find formatting setting in Clion to respect this formatting.
constexpr RGB(float ir, float ig, float ib) noexcept
: r(ir)
, g(ig)
, b(ib)
{
}
请先登录再写评论。
Hi Keith!
Feel free to comment or upvote https://youtrack.jetbrains.com/issue/CPP-3816. See https://intellij-support.jetbrains.com/hc/en-us/articles/207241135-How-to-follow-YouTrack-issues-and-receive-notifications if you are not familiar with YouTrack.
Thank you, Anna Falevskaya!