1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-24 01:54:33 +00:00

indentation fix for missed Fill function

This commit is contained in:
brain5lug 2016-10-11 00:46:18 +03:00
parent 141fb78237
commit 16c37a0f3d

8
Tag.h
View File

@ -45,10 +45,10 @@ public:
return true;
}
void Fill(uint8_t c)
{
memset(m_Buf, c, sz);
}
void Fill(uint8_t c)
{
memset(m_Buf, c, sz);
}
std::string ToBase64 () const
{