1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00

Fixed indendation

This commit is contained in:
Mordred 2017-09-15 11:04:42 +02:00 committed by GitHub
parent 4989f37eca
commit 1b6b91490a

View file

@ -34,24 +34,24 @@ namespace Db {
return static_cast< T >( atol( m_pValue ) );
}
uint64_t getUInt64()
uint64_t getUInt64()
{
if( m_pValue )
{
if( m_pValue )
{
#ifdef _WIN32
uint64_t value;
sscanf( m_pValue, "%I64d", &value );
return value;
#else
uint64_t value;
sscanf( m_pValue, "%Lu", &value );
return value;
#ifdef _WIN32
uint64_t value;
sscanf( m_pValue, "%I64d", &value );
return value;
#else
uint64_t value;
sscanf( m_pValue, "%Lu", &value );
return value;
#endif
}
else
return 0;
}
#endif
}
else
return 0;
}
uint32_t getLength() const;