cppcheck/addons/test/threadsafety/local_static.cpp
amai2012 2fa837c716
threadsafety shall not warn about const vars (in C++11) (#2847)
threadsafety shall not warn about const vars (in C++11) 
For C++03 a new id threadsafety-const was created.
2020-10-23 11:58:25 +02:00

7 lines
64 B
C++

struct Dummy {
int x;
};
void func() {
static Dummy dummy;
}