diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2017-04-11 21:43:12 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-04-19 01:35:03 (GMT) |
commit | d9ec36e22dfe61f3fb972dee33a5cae529e46b07 (patch) | |
tree | 376a3b84d9641c8c0237e0b6f3388593bacb46ce /include/jemalloc | |
parent | f692e6c214ec3fb5cb64e4131470793c6494afbd (diff) | |
download | jemalloc-d9ec36e22dfe61f3fb972dee33a5cae529e46b07.zip jemalloc-d9ec36e22dfe61f3fb972dee33a5cae529e46b07.tar.gz jemalloc-d9ec36e22dfe61f3fb972dee33a5cae529e46b07.tar.bz2 |
Header refactoring: move assert.h out of the catch-all
Diffstat (limited to 'include/jemalloc')
-rw-r--r-- | include/jemalloc/internal/hash_inlines.h | 2 | ||||
-rw-r--r-- | include/jemalloc/internal/jemalloc_internal_includes.h | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/include/jemalloc/internal/hash_inlines.h b/include/jemalloc/internal/hash_inlines.h index b134492..321c17c 100644 --- a/include/jemalloc/internal/hash_inlines.h +++ b/include/jemalloc/internal/hash_inlines.h @@ -1,6 +1,8 @@ #ifndef JEMALLOC_INTERNAL_HASH_INLINES_H #define JEMALLOC_INTERNAL_HASH_INLINES_H +#include "jemalloc/internal/assert.h" + /* * The following hash function is based on MurmurHash3, placed into the public * domain by Austin Appleby. See https://github.com/aappleby/smhasher for diff --git a/include/jemalloc/internal/jemalloc_internal_includes.h b/include/jemalloc/internal/jemalloc_internal_includes.h index 3a9c6ca..1539c90 100644 --- a/include/jemalloc/internal/jemalloc_internal_includes.h +++ b/include/jemalloc/internal/jemalloc_internal_includes.h @@ -37,12 +37,6 @@ */ /******************************************************************************/ -/* HERMETIC HEADERS */ -/******************************************************************************/ - -#include "jemalloc/internal/assert.h" - -/******************************************************************************/ /* TYPES */ /******************************************************************************/ |