From 422e2b2852bfc326be37fb76346d89caf15fdf4f Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 30 Mar 2023 00:00:56 -0700 Subject: [PATCH] compiler.h: remove typeof wimlib is compiled with -std=gnu99, so this is unnecessary. --- include/wimlib/compiler.h | 3 --- 1 file changed, 3 deletions(-) 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); \ -- 2.43.0