enthält
Code: Select all
CheckOptions:
- { key: readability-identifier-naming.ClassMethodCase, value: CamelCase }
- { key: readability-identifier-naming.FunctionCase, value: aNy_CasE }
< /code>
und eine Testdatei mit diesem Inhalt < /p>
Test.hpp
class TestClass {
int myMethod();
};
Code: Select all
clang-tidy test.hpp
Wenn ich die Option FunctionCase auf Camelcase festlegt, löst sie Warnung aus. Ist das ein Fehler oder verstehe ich etwas falsch?