Home
last modified time | relevance | path

Searched refs:nonConstInt (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.cpp3 int nonConstInt = 0; variable
6 int &nonConstIntReference = nonConstInt;
9 int *pointerToNonConstInt = &nonConstInt;
13 int *const constPointerToNonConstInt = &nonConstInt;
236 nonConstInt = nonConstLoopVariable + i + staticNonConstLoopVariable; in main()