brintos

brintos / llvm-project-archived public Read only

0
0
Text · 536 B · d3190e1 Raw
17 lines · plain
1.. title:: clang-tidy - misc-non-copyable-objects2 3misc-non-copyable-objects4=========================5 6`cert-fio38-c` redirects here as an alias for this check.7 8Flags dereferences and non-pointer declarations of objects that are9not meant to be passed by value, such as C FILE objects or POSIX10``pthread_mutex_t`` objects.11 12References13----------14 15This check corresponds to CERT C++ Coding Standard rule `FIO38-C. Do not copy a FILE object16<https://www.securecoding.cert.org/confluence/display/c/FIO38-C.+Do+not+copy+a+FILE+object>`_.17