Home
last modified time | relevance | path

Searched refs:nonConstPublicMemberVariable (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Davoid-non-const-global-variables.cpp46 int nonConstPublicMemberVariable = 0; member in DummyClass
64 int *nonConstPointerToMember = &nonConstClassInstance.nonConstPublicMemberVariable;
67 int *const constPointerToNonConstMember = &nonConstClassInstance.nonConstPublicMemberVariable;
80 const int *const constPointerToConstMember = &constClassInstance.nonConstPublicMemberVariable;