https://bugs.kde.org/show_bug.cgi?id=385851

--- Comment #2 from Richard <[email protected]> ---
We've an in-house check for a 3rdparty library which we cannot control to flag
default construction of several types:

//in thirdpartylib.h
class DoNotDefaultConstruct {
//....
}

//in our code
DoNotDefaultConstruct c; // will be flagged as intended
struct SomeStruct {
    DoNotDefaultConstruct c;
} inst; //should be flagged, but won't

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to