diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-05-06 09:43:49 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-05-06 09:47:41 +0900 |
commit | b0498caa7e92e3f53affb822ba73394624808c98 (patch) | |
tree | f70bed61e877e591cc5655336b6e50f4bf70c173 /object.c | |
parent | e79e5e0b40d28d0a7eaa06dbfd6b7812bbea2d1e (diff) |
Removed unnecessary duplicate code
`rb_equal` may be inlined in `case_equal` and actually same code
is generated twice.
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -141,12 +141,9 @@ rb_obj_setup(VALUE obj, VALUE klass, VALUE type) * Same as \c Object#===, case equality. *++ */ -static VALUE -case_equal(VALUE obj1, VALUE obj2) { +#define case_equal rb_equal /* The default implementation of #=== is * to call #== with the rb_equal() optimization. */ - return rb_equal(obj1, obj2); -} /*! * This function is an optimized version of calling #==. |