From c3615dc92c667899af7a11b2b25201dad5502ee6 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 15 Apr 2025 19:36:23 -0400 Subject: Deprecate `auto` --- src/stdlib/util.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/stdlib/util.h') diff --git a/src/stdlib/util.h b/src/stdlib/util.h index 4cb1b375..25cd49f9 100644 --- a/src/stdlib/util.h +++ b/src/stdlib/util.h @@ -19,10 +19,6 @@ #define IF_DECLARE(decl, expr, block) if (({ decl; expr ? ({ block; 1; }) : 0; })) {} -#ifndef auto -#define auto __auto_type -#endif - #define WHEN(type, subj, var, body) { type var = subj; switch (var.$tag) body } #ifndef public -- cgit v1.2.3