Added DeserializationOption::Filter (closes #959)

This commit is contained in:
Benoit Blanchon
2020-02-11 21:56:50 +01:00
parent 42b0d6a83d
commit 66b12da4e7
16 changed files with 1095 additions and 69 deletions

View File

@@ -34,6 +34,11 @@ class StringMover {
return StringBuilder(&_ptr);
}
// recover memory from last string
void reclaim(const char* str) {
_ptr = const_cast<char*>(str);
}
private:
char* _ptr;
};