dice-group / tentris-cpp-coding-guidelines

0 stars 0 forks source link

Clang-Tidy: Invalid case style for class constant #5

Closed liss-h closed 4 months ago

liss-h commented 4 months ago

Currently, the following code generates a warning:

struct S {
    static constexpr size_t result_depth = 1;
};

Even though it is the correct constant style.