8211269: Make declaration of Allocation protected in MemAllocator

Reviewed-by: shade
This commit is contained in:
Roman Kennke 2018-09-28 10:57:31 +02:00
parent afe05800ac
commit 3f09f0f79c

View File

@ -34,9 +34,9 @@
// These fascilities are used for allocating, and initializing newly allocated objects.
class MemAllocator: StackObj {
protected:
class Allocation;
protected:
CollectedHeap* const _heap;
Thread* const _thread;
Klass* const _klass;