summaryrefslogtreecommitdiff
path: root/lib/set.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/set.rb')
-rw-r--r--lib/set.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/set.rb b/lib/set.rb
index ec42b93fab..5be2bce76a 100644
--- a/lib/set.rb
+++ b/lib/set.rb
@@ -276,8 +276,8 @@ class Set
# Merges the elements of the given enumerable object to the set and
# returns self.
def merge(enum)
- if enum.is_a?(Set)
- @hash.update(enum.instance_eval { @hash })
+ if enum.instance_of?(self.class)
+ @hash.update(enum.instance_variable_get(:@hash))
else
enum.each { |o| add(o) }
end