Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/misc/
H A Dconst-correctness-values.cpp450 double &non_const_ref = np_local1[1]; in handle_from_array() local
451 non_const_ref = 42.; in handle_from_array()
491 for (int &non_const_ref : np_local0) { in range_for() local
492 non_const_ref = 42; in range_for()
496 for (auto &non_const_ref : np_local1) { in range_for() local
497 non_const_ref = 43; in range_for()
501 for (auto &&non_const_ref : np_local2) { in range_for()
502 non_const_ref = 44; in range_for()