From: Eric Biggers Date: Thu, 30 Mar 2023 07:00:56 +0000 (-0700) Subject: compiler.h: remove typeof X-Git-Tag: v1.14.0~47 X-Git-Url: https://wimlib.net/git/?a=commitdiff_plain;h=422e2b2852bfc326be37fb76346d89caf15fdf4f;p=wimlib compiler.h: remove typeof wimlib is compiled with -std=gnu99, so this is unnecessary. --- diff --git a/include/wimlib/compiler.h b/include/wimlib/compiler.h index dc0c1c98..d164184d 100644 --- a/include/wimlib/compiler.h +++ b/include/wimlib/compiler.h @@ -130,9 +130,6 @@ # define UNALIGNED_ACCESS_IS_FAST 0 #endif -/* Get the type of the specified expression. */ -#define typeof __typeof__ - /* Get the minimum of two variables, without multiple evaluation. */ #undef min #define min(a, b) ({ typeof(a) _a = (a); typeof(b) _b = (b); \