Coverity PW.MISSING_DECL_SPECIFIERS - CID 10674
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: 10674
Checker: PW.MISSING_
Category: No category available
CWE definition: No definition available
File: /usr/include/
Function: No function name available
Code snippet:
1178 Utility macros and inline functions
1179 */
1180
1181 template <typename T>
CID 10674 - PW.MISSING_
this declaration has no storage class or type specifier
During compilation of file '/tmp/buildd/
1182 Q_DECL_CONSTEXPR inline T qAbs(const T &t) { return t >= 0 ? t : -t; }
1183
1184 Q_DECL_CONSTEXPR inline int qRound(qreal d)
1185 { return d >= qreal(0.0) ? int(d + qreal(0.5)) : int(d - int(d-1) + qreal(0.5)) + int(d-1); }
1186
1187 #if defined(QT_NO_FPU) || defined(