From 84e9c4befe071d95ff36baf2faf76a7a6d52bc1e Mon Sep 17 00:00:00 2001 From: cremno Date: Tue, 7 Jan 2014 18:15:45 +0100 Subject: string.c: remove str_mod_check Clang 3.4 emits '-Wunused-function' - and it's really unused! But according to the description this seems to be a bug: >Warn whenever a static function is declared but not defined or >a non-inline static function is unused. This warning is enabled by -Wall. Source: --- src/string.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/string.c b/src/string.c index e8c37180d..7d0cdaf0d 100644 --- a/src/string.c +++ b/src/string.c @@ -107,16 +107,6 @@ mrb_str_resize(mrb_state *mrb, mrb_value str, mrb_int len) return str; } -static inline void -str_mod_check(mrb_state *mrb, mrb_value str, char *p, mrb_int len) -{ - struct RString *s = mrb_str_ptr(str); - - if (s->ptr != p || s->len != len) { - mrb_raise(mrb, E_RUNTIME_ERROR, "string modified"); - } -} - #define mrb_obj_alloc_string(mrb) ((struct RString*)mrb_obj_alloc((mrb), MRB_TT_STRING, (mrb)->string_class)) /* char offset to byte offset */ -- cgit v1.2.3