dice-group / tentris-cpp-coding-guidelines

0 stars 0 forks source link

Class member casing warnings #1

Closed liss-h closed 5 months ago

liss-h commented 5 months ago

Clang-tidy complains on the following code

struct S {
private:
    int member_;
};

Because member_ does not match the member style lower_case. I think PrivateMemberSuffix and ProtectedMemberSuffix need to be configured

liss-h commented 5 months ago

Note: I don't think we want to configure this for public members