From a60905524c5fb9e9604b6d81f7b06622a86132e2 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Mon, 8 Apr 2019 06:26:21 +0000 Subject: [PATCH] SW: Replace void* with decltype(o) in TRAVERSE define. Patch from Striker. git-svn-id: https://svn.eduke32.com/eduke32@7507 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/sw/src/lists.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sw/src/lists.h b/source/sw/src/lists.h index ac0794bcf..0ed59014a 100644 --- a/source/sw/src/lists.h +++ b/source/sw/src/lists.h @@ -58,7 +58,7 @@ typedef ((LIST) nodep)->Next->Prev = ((LIST) nodep)->Prev) -#define TRAVERSE(l, o, n) ASSERT(((LIST)l)->Next && ((LIST)l)->Prev); for (o = (void*)(((LIST)l)->Next); \ +#define TRAVERSE(l, o, n) ASSERT(((LIST)l)->Next && ((LIST)l)->Prev); for (o = (decltype(o))(((LIST)l)->Next); \ n = o->Next, (LIST) o != (LIST) l; \ o = n)