From 7be71b94a8ef4f8dd907990987d02db901b5efda Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Fri, 15 Jul 2016 19:33:01 +0000 Subject: To remove the const qualifier from a pointer to an object - either because we know it is actually mutable or because we are passing it to a function that doesn't accept a const object but won't actually attempt to modify it - simply casting from (const type *) to (type *) is legal C and clearly expresses the intent. So get rid of the obfuscating UNCONST macro. Basic idea discussed with guenther@. --- main.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'main.h') diff --git a/main.h b/main.h index a53df93c..f12f3e4c 100644 --- a/main.h +++ b/main.h @@ -1,4 +1,4 @@ -/* $Id: main.h,v 1.25 2016/07/08 22:29:05 schwarze Exp $ */ +/* $Id: main.h,v 1.26 2016/07/15 19:33:01 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2014, 2015 Ingo Schwarze @@ -16,8 +16,6 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define UNCONST(a) ((void *)(uintptr_t)(const void *)(a)) - struct roff_man; struct manoutput; -- cgit v1.2.3