[前][次][番号順一覧][スレッド一覧]

ruby-changes:28603

From: kosaki <ko1@a...>
Date: Sun, 12 May 2013 17:40:12 +0900 (JST)
Subject: [ruby-changes:28603] kosaki:r40655 (trunk): * bignum.c: remove redundant decl for big_lshift() big_rshift().

kosaki	2013-05-12 17:40:00 +0900 (Sun, 12 May 2013)

  New Revision: 40655

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40655

  Log:
    * bignum.c: remove redundant decl for big_lshift() big_rshift().

  Modified files:
    trunk/ChangeLog
    trunk/bignum.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 40654)
+++ ChangeLog	(revision 40655)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed May  8 13:41:57 2013  KOSAKI Motohiro  <kosaki.motohiro@g...>
+
+	* bignum.c: remove redundant decl for big_lshift() big_rshift().
+
 Sun May 12 16:06:43 2013  NARUSE, Yui  <naruse@r...>
 
 	* ext/socket/rubysocket.h (rsock_inspect_sockaddr): as r40646
Index: bignum.c
===================================================================
--- bignum.c	(revision 40654)
+++ bignum.c	(revision 40655)
@@ -3055,9 +3055,6 @@ bdigbitsize(BDIGIT x) https://github.com/ruby/ruby/blob/trunk/bignum.c#L3055
     return size;
 }
 
-static VALUE big_lshift(VALUE, unsigned long);
-static VALUE big_rshift(VALUE, unsigned long);
-
 static VALUE
 big_shift(VALUE x, long n)
 {

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]