Coverity PW.MISSING_DECL_SPECIFIERS - CID 10673
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Qt bindings for libdee |
New
|
Undecided
|
Unassigned |
Bug Description
This bug is exported from the Coverity Integration Manager on Canonical's servers. For information on how this is done please see this website: https:/
CID: 10673
Checker: PW.MISSING_
Category: No category available
CWE definition: No definition available
File: /usr/include/
Function: No function name available
Code snippet:
2280 typedef void **Zero;
2281 int i;
2282 public:
2283 typedef Enum enum_type;
CID 10673 - PW.MISSING_
this declaration has no storage class or type specifier
During compilation of file '/tmp/buildd/
2284 Q_DECL_CONSTEXPR inline QFlags(const QFlags &f) : i(f.i) {}
2285 Q_DECL_CONSTEXPR inline QFlags(Enum f) : i(f) {}
2286 Q_DECL_CONSTEXPR inline QFlags(Zero = 0) : i(0) {}
2287 inline QFlags(QFlag f) : i(f) {}
2288
2289 inline QFlags &operator=(const QFlags &f) { i = f.i; return *this; }