diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-12-20 23:48:15 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-12-20 23:48:15 +0900 |
commit | 07e595fdbd75ed44473073cdf8cd758572d11709 (patch) | |
tree | 05adbd2b9d08690bed5be134acf2cb4111c4ea07 /internal.h | |
parent | dd7f0c87c9da8e695c38a6529deb6e0f24f6d06c (diff) |
Added `experimental` warning category
[Feature #16420]
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h index 2812b631be..baefb36c02 100644 --- a/internal.h +++ b/internal.h @@ -1558,6 +1558,7 @@ PRINTF_ARGS(void rb_syserr_enc_warning(int err, rb_encoding *enc, const char *fm typedef enum { RB_WARN_CATEGORY_NONE, RB_WARN_CATEGORY_DEPRECATED, + RB_WARN_CATEGORY_EXPERIMENTAL, } rb_warning_category_t; rb_warning_category_t rb_warning_category_from_name(VALUE category); bool rb_warning_category_enabled_p(rb_warning_category_t category); |