summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-18 22:43:06 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-18 22:43:06 +0000
commit00b2f5be9cbe7ef5ead521e6a99103489f64f821 (patch)
treeb43207884f6412ed1401ebd8898e787ed7814295
parent5e9e9db53492903ab4655cd670e143b4b7ebe4e6 (diff)
downloadruby-00b2f5be9cbe7ef5ead521e6a99103489f64f821.tar.gz
ruby-00b2f5be9cbe7ef5ead521e6a99103489f64f821.tar.xz
ruby-00b2f5be9cbe7ef5ead521e6a99103489f64f821.zip
* lib/cmath.rb (log2,cbrt,frexp,ldexp,hypot,erf,erfc,gamma,lgamma):
should be also privided as module function. [ruby-dev:36787] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/cmath.rb10
2 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e07127f3e..d43b824ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Oct 19 07:37:13 2008 Tadayoshi Funaba <tadf@dotrb.org>
+
+ * lib/cmath.rb (log2,cbrt,frexp,ldexp,hypot,erf,erfc,gamma,lgamma):
+ should be also privided as module function. [ruby-dev:36787]
+
Sun Oct 19 07:25:08 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* keywords, lex.c.src, opt_insn_unif.def, opt_operand.def: moved rarely changed
diff --git a/lib/cmath.rb b/lib/cmath.rb
index d29340180..00bcc9087 100644
--- a/lib/cmath.rb
+++ b/lib/cmath.rb
@@ -220,4 +220,14 @@ module CMath
module_function :atanh!
module_function :atanh
+ module_function :log2
+ module_function :cbrt
+ module_function :frexp
+ module_function :ldexp
+ module_function :hypot
+ module_function :erf
+ module_function :erfc
+ module_function :gamma
+ module_function :lgamma
+
end