From 12269003dafa4c3fe81ce3f3cfcbb22c120fa8f6 Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Fri, 13 Jul 2018 02:05:00 +0200 Subject: [PATCH] =?UTF-8?q?fix=20'error:=20=E2=80=98uint8=E2=80=99=20was?= =?UTF-8?q?=20not=20declared=20in=20this=20scope'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/rwbase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rwbase.h b/src/rwbase.h index 4b39d1d..5058697 100644 --- a/src/rwbase.h +++ b/src/rwbase.h @@ -80,7 +80,7 @@ struct LLLink }; #define LLLinkGetData(linkvar,type,entry) \ - ((type*)(((uint8*)(linkvar))-offsetof(type,entry))) + ((type*)(((rw::uint8*)(linkvar))-offsetof(type,entry))) // Have to be careful since the link might be deleted. #define FORLIST(_link, _list) \