C++ bindings needed to use system_allocator's free() too

This commit is contained in:
Meredith L. Patterson 2015-08-02 22:03:30 +02:00
parent 6bffacefaf
commit 759fbe77e5
2 changed files with 7 additions and 1 deletions

View file

@ -28,6 +28,11 @@
#include <string.h>
#include "hammer.h"
/* "Internal" in this case means "we're not ready to commit
* to a public API." Many structures and routines here will be
* useful in client programs.
*/
#ifdef NDEBUG
#define assert_message(check, message) do { } while(0)
#else