GetHex() is only used on ARM linux.

This commit is contained in:
Bartosz Taudul 2020-07-31 01:46:16 +02:00
parent 6866d8f429
commit b696f1b466

View File

@ -270,6 +270,7 @@ static const char* GetProcessName()
return processName; return processName;
} }
#if defined __linux__ && defined __ARM_ARCH
static uint32_t GetHex( char*& ptr, int skip ) static uint32_t GetHex( char*& ptr, int skip )
{ {
uint32_t ret; uint32_t ret;
@ -287,6 +288,7 @@ static uint32_t GetHex( char*& ptr, int skip )
ptr = end; ptr = end;
return ret; return ret;
} }
#endif
static const char* GetHostInfo() static const char* GetHostInfo()
{ {