diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2017-04-21 16:37:34 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-04-24 17:33:21 (GMT) |
commit | 4d2e4bf5ebb1e37a9348fdbf51af0b63304d7c98 (patch) | |
tree | ecb8c4f306175db5b74f0dde83a28993d71f9888 /src/jemalloc_cpp.cpp | |
parent | 7d86c92c61c60b771cdf146f6187c1550a089ad1 (diff) | |
download | jemalloc-4d2e4bf5ebb1e37a9348fdbf51af0b63304d7c98.zip jemalloc-4d2e4bf5ebb1e37a9348fdbf51af0b63304d7c98.tar.gz jemalloc-4d2e4bf5ebb1e37a9348fdbf51af0b63304d7c98.tar.bz2 |
Get rid of most of the various inline macros.
Diffstat (limited to 'src/jemalloc_cpp.cpp')
-rw-r--r-- | src/jemalloc_cpp.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jemalloc_cpp.cpp b/src/jemalloc_cpp.cpp index 71999a8..844ab39 100644 --- a/src/jemalloc_cpp.cpp +++ b/src/jemalloc_cpp.cpp @@ -40,7 +40,6 @@ void operator delete[](void *ptr, std::size_t size) noexcept; #endif template <bool IsNoExcept> -JEMALLOC_INLINE void * newImpl(std::size_t size) noexcept(IsNoExcept) { void *ptr = je_malloc(size); |