Fixed object keys not being duplicated

This commit is contained in:
Benoit Blanchon
2018-10-04 11:16:23 +02:00
parent 527dc19794
commit 6b985b2d1f
30 changed files with 368 additions and 218 deletions

View File

@@ -11,9 +11,9 @@ class StringCopier {
public:
StringCopier(TMemoryPool& memoryPool) : _memoryPool(&memoryPool) {}
typedef typename TMemoryPool::String String;
typedef typename TMemoryPool::StringBuilder StringBuilder;
String startString() {
StringBuilder startString() {
return _memoryPool->startString();
}