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

ruby-changes:16679

From: nobu <ko1@a...>
Date: Sun, 18 Jul 2010 12:42:01 +0900 (JST)
Subject: [ruby-changes:16679] Ruby:r28675 (trunk): * gc.c (rb_objspace_each_objects): adjust indent.

nobu	2010-07-18 12:23:10 +0900 (Sun, 18 Jul 2010)

  New Revision: 28675

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

  Log:
    * gc.c (rb_objspace_each_objects): adjust indent.

  Modified files:
    trunk/gc.c

Index: gc.c
===================================================================
--- gc.c	(revision 28674)
+++ gc.c	(revision 28675)
@@ -2535,9 +2535,9 @@
     i = 0;
     while (i < heaps_used) {
 	while (0 < i && (uintptr_t)membase < (uintptr_t)objspace->heap.sorted[i-1].slot->membase)
-	  i--;
+	    i--;
 	while (i < heaps_used && (uintptr_t)objspace->heap.sorted[i].slot->membase <= (uintptr_t)membase )
-	  i++;
+	    i++;
 	if (heaps_used <= i)
 	  break;
 	membase = objspace->heap.sorted[i].slot->membase;

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

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