1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* math.c: Math::DomainError < StandardException [ruby-core:29855]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27566 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2010-04-30 13:46:38 +00:00
parent e955cff06c
commit 63324cb36d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Apr 30 22:46:27 2010 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
* math.c: Math::DomainError < StandardException [ruby-core:29855]
Fri Apr 30 21:40:36 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/test_open3.rb (TestOpen3#test_commandline): use simple

2
math.c
View file

@ -746,7 +746,7 @@ void
Init_Math(void)
{
rb_mMath = rb_define_module("Math");
rb_eMathDomainError = rb_define_class_under(rb_mMath, "DomainError", rb_eArgError);
rb_eMathDomainError = rb_define_class_under(rb_mMath, "DomainError", rb_eStandardError);
#ifdef M_PI
rb_define_const(rb_mMath, "PI", DBL2NUM(M_PI));