From 63324cb36dc07e8759ff4148d64728dabed09fd9 Mon Sep 17 00:00:00 2001 From: marcandre Date: Fri, 30 Apr 2010 13:46:38 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ math.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d158a7f34b..d7739690c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 30 22:46:27 2010 Marc-Andre Lafortune + + * math.c: Math::DomainError < StandardException [ruby-core:29855] + Fri Apr 30 21:40:36 2010 Nobuyoshi Nakada * test/test_open3.rb (TestOpen3#test_commandline): use simple diff --git a/math.c b/math.c index d4251df28f..8601b614e7 100644 --- a/math.c +++ b/math.c @@ -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));