Lines Matching refs:reserved
1 .. title:: clang-tidy - bugprone-reserved-identifier
3 bugprone-reserved-identifier
8 Checks for usages of identifiers reserved for use by the implementation.
31 identifier that is _not_ a reserved identifier. This mode is for use by e.g.
35 This check does not (yet) check for other reserved names, e.g. macro names
36 identical to language keywords, and names specifically reserved by language
40 or define a reserved identifier
41 <https://wiki.sei.cmu.edu/confluence/display/c/DCL37-C.+Do+not+declare+or+define+a+reserved+identif…
42 as well as its C++ counterpart, `DCL51-CPP. Do not declare or define a reserved
44 ….cmu.edu/confluence/display/cplusplus/DCL51-CPP.+Do+not+declare+or+define+a+reserved+identifier>`_.
51 If `true`, inverts the check, i.e. flags names that are not reserved.