fix buffer append

This commit is contained in:
rexy712 2022-05-22 19:35:13 -07:00
parent 3fc89111ea
commit 075a0b0af2

View File

@ -208,6 +208,7 @@ namespace rexy{
for(size_type i = 0;i < len;++i){
new (m_data + (m_size + i)) T(p[i]);
}
m_size += len;
}
}