1234567891011121314151617181920212223242526272829 |
- From 3f3b9289b066cfb9eaffa119816932e71266943f Mon Sep 17 00:00:00 2001
- From: Yuriy Chernyshov <thegeorg@yandex-team.com>
- Date: Mon, 9 May 2022 15:36:49 +0300
- Subject: [PATCH] Fix compiling edata.h with MSVC
- At the time an attempt to compile jemalloc 5.3.0 with MSVC 2019 results in the followin error message:
- > jemalloc/include/jemalloc/internal/edata.h:660: error C4576: a parenthesized type followed by an initializer list is a non-standard explicit type conversion syntax
- ---
- include/jemalloc/internal/edata.h | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
- diff --git a/include/jemalloc/internal/edata.h b/include/jemalloc/internal/edata.h
- index af039ea73..e77a55e64 100644
- --- a/include/jemalloc/internal/edata.h
- +++ b/include/jemalloc/internal/edata.h
- @@ -656,8 +656,10 @@ edata_ead_comp(const edata_t *a, const edata_t *b) {
-
- static inline edata_cmp_summary_t
- edata_cmp_summary_get(const edata_t *edata) {
- - return (edata_cmp_summary_t){edata_sn_get(edata),
- - (uintptr_t)edata_addr_get(edata)};
- + edata_cmp_summary_t result;
- + result.sn = edata_sn_get(edata);
- + result.addr = (uintptr_t)edata_addr_get(edata);
- + return result;
- }
-
- static inline int
|