summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-07-16 09:49:26 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2013-07-16 09:49:26 -0700
commit958d5b763df9cbfbf0173d35ba0ba27934f16394 (patch)
tree5db3254264d4eb406a6a33faf101a627baf4f40a
parent259fcf2ee002a0442fbad48d75c8bca122377087 (diff)
parentc2d94e2ed8b6bd85e1d453c4e2a67cd2166da635 (diff)
downloadmruby-958d5b763df9cbfbf0173d35ba0ba27934f16394.tar.gz
mruby-958d5b763df9cbfbf0173d35ba0ba27934f16394.zip
Merge pull request #1388 from carsonmcdonald/toplevelwarnfix
Fix warning by making call explicit
-rw-r--r--mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb b/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb
index 24a042e84..774562398 100644
--- a/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb
+++ b/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb
@@ -1,6 +1,6 @@
def self.include (*modules)
- self.class.include *modules
+ self.class.include(*modules)
end
def self.private(*methods)