remove PARANOID from comments

This commit is contained in:
Yukihiro Matz Matsumoto
2013-03-14 18:47:59 +09:00
parent 1ebebd304a
commit 535a5489c7
2 changed files with 3 additions and 6 deletions
+1 -2
View File
@@ -563,8 +563,7 @@ str_eql(mrb_state *mrb, const mrb_value str1, const mrb_value str2)
{
const size_t len = RSTRING_LEN(str1);
/* PARANOID: assert(SIZE_MAX >= MRB_INT_MAX) */
/* assert(SIZE_MAX >= MRB_INT_MAX) */
if (len != RSTRING_LEN(str2)) return FALSE;
if (memcmp(RSTRING_PTR(str1), RSTRING_PTR(str2), len) == 0)
return TRUE;