forked from qt-creator/qt-creator
CDB: Make a local function static
Change-Id: I91f694a6fdfe4f8efb038180da376081ec9d1ad6 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
3bc0af9b60
commit
98585ba5d2
@@ -149,7 +149,7 @@ std::string wStringToString(const std::wstring &w)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Convert an ASCII hex digit to its value 'A'->10
|
// Convert an ASCII hex digit to its value 'A'->10
|
||||||
inline unsigned hexDigit(char c)
|
static inline unsigned hexDigit(char c)
|
||||||
{
|
{
|
||||||
if (c <= '9')
|
if (c <= '9')
|
||||||
return c - '0';
|
return c - '0';
|
||||||
|
Reference in New Issue
Block a user