Switching StringBuffer to use a raw pointer.

This commit is contained in:
Ben Vanik
2015-06-10 00:24:17 -07:00
parent 070d34cd02
commit 56a4620cdf
4 changed files with 31 additions and 24 deletions

View File

@@ -28,6 +28,7 @@ class Arena {
T* Alloc() {
return reinterpret_cast<T*>(Alloc(sizeof(T)));
}
void Rewind(size_t size);
void* CloneContents();