Skip to content

Commit 1350614

Browse files
committedFeb 7, 2016
Moved memory+gc classes to 'namespace memory'.
1 parent b2f8bec commit 1350614

File tree

136 files changed

+676
-589
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+676
-589
lines changed
 

Diff for: ‎rakelib/blueprint.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
gcc.ldflags << Rubinius::BUILD_CONFIG[:user_ldflags]
7474

7575
# Files
76-
subdirs = %w[ builtin capi util instruments gc llvm missing ].map do |x|
76+
subdirs = %w[ builtin capi util instruments memory llvm missing ].map do |x|
7777
"vm/#{x}/*.{cpp,c}"
7878
end
7979

Diff for: ‎vm/arguments.hpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
#include "builtin/tuple.hpp"
77

88
namespace rubinius {
9-
class Array;
9+
namespace memory {
10+
class GarbageCollector;
11+
}
1012

11-
class GarbageCollector;
13+
class Array;
1214

1315
class Arguments {
1416
Symbol* name_;

0 commit comments

Comments
 (0)
Please sign in to comment.