Silence a few warnings from excess semicolons
We dont really need those after functions definitions. Change-Id: I41f010a223977c55d4b7271ac3ebdc1bb9047b09 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
This commit is contained in:
parent
5ec937115b
commit
d3b9759b42
@ -457,7 +457,7 @@ public:
|
|||||||
return idHelper();
|
return idHelper();
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
};
|
}
|
||||||
#endif
|
#endif
|
||||||
constexpr qsizetype sizeOf() const;
|
constexpr qsizetype sizeOf() const;
|
||||||
constexpr qsizetype alignOf() const;
|
constexpr qsizetype alignOf() const;
|
||||||
@ -1731,7 +1731,7 @@ private:
|
|||||||
if (x != e)
|
if (x != e)
|
||||||
x++;
|
x++;
|
||||||
return x;
|
return x;
|
||||||
};
|
}
|
||||||
static constexpr const char *skipTemplate(const char *x, const char *e, bool stopAtComa = false)
|
static constexpr const char *skipTemplate(const char *x, const char *e, bool stopAtComa = false)
|
||||||
{
|
{
|
||||||
int scopeDepth = 0;
|
int scopeDepth = 0;
|
||||||
@ -1772,7 +1772,7 @@ private:
|
|||||||
x++;
|
x++;
|
||||||
}
|
}
|
||||||
return x;
|
return x;
|
||||||
};
|
}
|
||||||
|
|
||||||
constexpr void append(char x)
|
constexpr void append(char x)
|
||||||
{
|
{
|
||||||
@ -1793,7 +1793,7 @@ private:
|
|||||||
{
|
{
|
||||||
while (*x)
|
while (*x)
|
||||||
append(*x++);
|
append(*x++);
|
||||||
};
|
}
|
||||||
|
|
||||||
constexpr void normalizeIntegerTypes(const char *&begin, const char *end)
|
constexpr void normalizeIntegerTypes(const char *&begin, const char *end)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user