From 6a5c355e4e7deb76363f474041d00465be3b317b Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Thu, 13 Apr 2023 16:48:59 +0200 Subject: Add RB_WARN_CATEGORY_DEFAULT_BITS Followup: ac123f167a364c3d7a43eca78d564e41f6dbb91e RB_WARN_CATEGORY_ALL_BITS is exposed in a public header, so it makes sense for it to be updated to contain all valid bits. Instead we introduce RB_WARN_CATEGORY_DEFAULT_BITS to list the categories that are enabled by default. --- error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'error.c') diff --git a/error.c b/error.c index 61b6592bc0..3d44b6671b 100644 --- a/error.c +++ b/error.c @@ -150,7 +150,7 @@ rb_syntax_error_append(VALUE exc, VALUE file, int line, int column, static unsigned int warning_disabled_categories = ( (1U << RB_WARN_CATEGORY_DEPRECATED) | - ~RB_WARN_CATEGORY_ALL_BITS); + ~RB_WARN_CATEGORY_DEFAULT_BITS); static unsigned int rb_warning_category_mask(VALUE category) -- cgit v1.2.1