diff options
author | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-06-29 11:33:52 +0000 |
---|---|---|
committer | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-06-29 11:33:52 +0000 |
commit | 113f5b71c32885069311e4a18914a83b78858a10 (patch) | |
tree | 5b125ffe98c7c4adcce6eca7af3d8549e4549a63 /rational.c | |
parent | 5eb40186b6e101166b3793b6e4c6dd16c3d3eac1 (diff) | |
download | ruby-113f5b71c32885069311e4a18914a83b78858a10.tar.gz ruby-113f5b71c32885069311e4a18914a83b78858a10.tar.xz ruby-113f5b71c32885069311e4a18914a83b78858a10.zip |
added a comment.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rational.c')
-rw-r--r-- | rational.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rational.c b/rational.c index 19ec3d1ff..742722690 100644 --- a/rational.c +++ b/rational.c @@ -927,6 +927,7 @@ nurat_expt(VALUE self, VALUE other) } case T_BIGNUM: rb_warn("in a**b, b may be too big"); + /* fall through */ case T_FLOAT: case T_RATIONAL: return rb_fexpt(f_to_f(self), other); |