7 lines
135 B
C++
Raw Permalink Normal View History

2023-11-05 03:26:09 +08:00
#include "ByteBuf.h"
namespace luban
{
const int ByteBuf::INIT_CAPACITY = 16;
const byte ByteBuf::EMPTY_BYTES[1] = { '\0' };
}