llvm-for-llvmta/tools/clang/test/Analysis/Inputs/system-header-simulator-for...

19 lines
502 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
// Like the compiler, the static analyzer treats some functions differently if
// they come from a system header -- for example, it is assumed that system
// functions do not arbitrarily free() their parameters, and that some bugs
// found in system headers cannot be fixed by the user and should be
// suppressed.
#pragma clang system_header
struct RecordInSystemHeader {
int a;
int b;
};
template <class T>
struct ContainerInSystemHeader {
T &t;
ContainerInSystemHeader(T& t) : t(t) {}
};