File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -175,8 +175,8 @@ class CodeHeap : public CHeapObj<mtCode> {
175
175
return contains ((void *)blob);
176
176
}
177
177
178
- virtual void * find_start (void * p) const ; // returns the block containing p or null
179
- virtual CodeBlob* find_blob (void * start) const ;
178
+ void * find_start (void * p) const ; // returns the block containing p or null
179
+ CodeBlob* find_blob (void * start) const ;
180
180
size_t alignment_unit () const ; // alignment of any block
181
181
size_t alignment_offset () const ; // offset of first byte of any block, within the enclosing alignment unit
182
182
static size_t header_size () { return sizeof (HeapBlock); } // returns the header size for each heap block
@@ -192,9 +192,9 @@ class CodeHeap : public CHeapObj<mtCode> {
192
192
int freelist_length () const { return _freelist_length; } // number of elements in the freelist
193
193
194
194
// returns the first block or null
195
- virtual void * first () const { return next_used (first_block ()); }
195
+ void * first () const { return next_used (first_block ()); }
196
196
// returns the next block given a block p or null
197
- virtual void * next (void * p) const { return next_used (next_block (block_start (p))); }
197
+ void * next (void * p) const { return next_used (next_block (block_start (p))); }
198
198
199
199
// Statistics
200
200
size_t capacity () const ;
You can’t perform that action at this time.
0 commit comments