Fixed Visual Studio's warnings

This commit is contained in:
Benoit Blanchon
2015-02-07 15:05:46 +01:00
parent 02960f28e4
commit 80913b8044
2 changed files with 6 additions and 3 deletions

View File

@ -16,6 +16,9 @@ class JsonBufferAllocated {
void *operator new(size_t n, JsonBuffer *jsonBuffer) throw() {
return jsonBuffer->alloc(n);
}
void operator delete(void*, JsonBuffer *) throw() {
}
};
}
}