summaryrefslogtreecommitdiff
path: root/shape.c
diff options
context:
space:
mode:
authorJean Boussier <byroot@ruby-lang.org>2023-04-18 12:36:57 +0200
committerJean Boussier <jean.boussier@gmail.com>2023-05-03 10:43:46 +0200
commit04ee666aab071cb6fd9a8b356b22d73250ca6b9b (patch)
treed8eda2531edc0f78ad26a27ad1844edd5acd3139 /shape.c
parent409a13e9ea018bbfa9dfc71c3427eff2dc4c4bd2 (diff)
downloadruby-04ee666aab071cb6fd9a8b356b22d73250ca6b9b.tar.gz
Make the maximum shapes variation warning non-verbose
[Feature #19538] Since that category is not enabled by default, making it a verbose warning is redundant. Enabling performance warning should work with the default verbosity level.
Diffstat (limited to 'shape.c')
-rw-r--r--shape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shape.c b/shape.c
index 0651ec3172..0a5cdd88ee 100644
--- a/shape.c
+++ b/shape.c
@@ -403,7 +403,7 @@ rb_shape_get_next(rb_shape_t* shape, VALUE obj, ID id)
RCLASS_EXT(klass)->variation_count++;
if (rb_warning_category_enabled_p(RB_WARN_CATEGORY_PERFORMANCE)) {
if (RCLASS_EXT(klass)->variation_count >= SHAPE_MAX_VARIATIONS) {
- rb_category_warning(
+ rb_category_warn(
RB_WARN_CATEGORY_PERFORMANCE,
"Maximum shapes variations (%d) reached by %"PRIsVALUE", instance variables accesses will be slower.",
SHAPE_MAX_VARIATIONS,