diff options
author | George Hazan <ghazan@miranda.im> | 2019-12-06 17:15:42 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-12-06 17:15:42 +0300 |
commit | 5077fc56fbde196cdf821e044b607d39a34ce258 (patch) | |
tree | 9d46e9d8ddc22696e48d5073ef046ce3aebae85f /tools/mdbx_load/src/stdafx.h | |
parent | 3bb16e798cb51d5764aacbefd4edf26f52d8c4f0 (diff) |
libmdbx: upgrade to 0.4.0
Diffstat (limited to 'tools/mdbx_load/src/stdafx.h')
-rw-r--r-- | tools/mdbx_load/src/stdafx.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/mdbx_load/src/stdafx.h b/tools/mdbx_load/src/stdafx.h index 670a09a54d..c31574e6bf 100644 --- a/tools/mdbx_load/src/stdafx.h +++ b/tools/mdbx_load/src/stdafx.h @@ -21,7 +21,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <stdint.h> #include <windows.h> -#include "../../libs/libmdbx/src/src/bits.h" +#define MDBX_TOOLS /* Avoid using internal mdbx_assert() */ +#include "../../libs/libmdbx/src/src/elements/internals.h" #define CMP_UINT(x, y) { if ((x) != (y)) return (x) < (y) ? -1 : 1; } |