[DEBUG] Mac debug not needed on Linux
This commit is contained in:
parent
216f3a5528
commit
9e93578be9
@ -158,12 +158,15 @@ etk::CCout& etk::CCout::operator << (char32_t _t)
|
||||
return *this;
|
||||
}
|
||||
|
||||
#if defined(__TARGET_OS__MacOs)
|
||||
etk::CCout& etk::CCout::operator << (size_t _t)
|
||||
{
|
||||
snprintf(tmp, MAX_LOG_SIZE_TMP, "%lld", (uint64_t)_t);
|
||||
strncat(m_tmpChar, tmp, MAX_LOG_SIZE);
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
|
||||
etk::CCout& etk::CCout::operator << (int8_t _t)
|
||||
{
|
||||
snprintf(tmp, MAX_LOG_SIZE_TMP, "%d", _t);
|
||||
|
@ -32,7 +32,9 @@ namespace etk {
|
||||
CCout(void);
|
||||
~CCout(void);
|
||||
CCout& operator << (char32_t _t);
|
||||
#if defined(__TARGET_OS__MacOs)
|
||||
CCout& operator << (size_t _t);
|
||||
#endif
|
||||
CCout& operator << (int8_t _t);
|
||||
CCout& operator << (int16_t _t);
|
||||
CCout& operator << (int32_t _t);
|
||||
|
Loading…
Reference in New Issue
Block a user