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

@@ -74,6 +74,10 @@ class MemoryPool {
checkInvariants();
}
void reclaimLastString(const char* s) {
_left = const_cast<char*>(s);
}
void clear() {
_left = _begin;
_right = _end;