Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMassimiliano Mantione <massi@mono-cvs.ximian.com>2008-10-13 16:24:25 +0400
committerMassimiliano Mantione <massi@mono-cvs.ximian.com>2008-10-13 16:24:25 +0400
commit3af8e302685158afe93374bf12530301c9e2f9c3 (patch)
treeef9e55d2dfba64a4694136ff085b1c8db7f3696c /Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs
parentca9b21f8dc83c7d9c4de3854119195dba398bb20 (diff)
Turn HeapObject class into generic BaseHeapObject class, and add a new IAllocatedObject interface (this will give more freedom when implementing HeapObject and AllocatedObject separately).
svn path=/trunk/mono-tools/; revision=115650
Diffstat (limited to 'Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs')
-rw-r--r--Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs b/Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs
index 512ce0ed..a4be67ac 100644
--- a/Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs
+++ b/Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs
@@ -199,7 +199,7 @@ namespace Mono.Profiler
public override void HeapObjectUnreachable (LoadedClass c, uint size) {
lastHeapSnapshot.HeapObjectUnreachable (c, size);
}
- public override void HeapObjectReachable (HeapObject<LoadedClass> o) {
+ public override void HeapObjectReachable (HeapObject o) {
}
public override void HeapReportEnd (HeapSnapshot snapshot) {
lastHeapSnapshot.InitializeBackReferences ();