diff options
| author | Yukihiro Matz Matsumoto <[email protected]> | 2013-03-14 18:47:59 +0900 |
|---|---|---|
| committer | Yukihiro Matz Matsumoto <[email protected]> | 2013-03-14 18:47:59 +0900 |
| commit | 535a5489c7028378d9388aa187c7edb946595ec7 (patch) | |
| tree | 0e7aff3573f406b746e0a5eb80d631c4a7d499c6 /src/string.c | |
| parent | 1ebebd304a1a1012b29679434b92db20f324371c (diff) | |
| download | mruby-535a5489c7028378d9388aa187c7edb946595ec7.tar.gz mruby-535a5489c7028378d9388aa187c7edb946595ec7.zip | |
remove PARANOID from comments
Diffstat (limited to 'src/string.c')
| -rw-r--r-- | src/string.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/string.c b/src/string.c index d34256e63..89bcf0ca6 100644 --- a/src/string.c +++ b/src/string.c @@ -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; |
