8004895: NPG: JMapPermCore test failure caused by warnings about missing field

Reviewed-by: johnc
This commit is contained in:
Jon Masamitsu 2013-01-03 15:03:27 -08:00
parent ad7544b47c
commit 6f5991fa38
6 changed files with 21 additions and 16 deletions

View file

@ -43,6 +43,10 @@ template <class Chunk_t, template <class> class FreeList_t> class AscendTreeCens
template <class Chunk_t, template <class> class FreeList_t> class DescendTreeCensusClosure;
template <class Chunk_t, template <class> class FreeList_t> class DescendTreeSearchClosure;
class FreeChunk;
template <class> class AdaptiveFreeList;
typedef BinaryTreeDictionary<FreeChunk, AdaptiveFreeList> AFLBinaryTreeDictionary;
template <class Chunk_t, template <class> class FreeList_t>
class TreeList : public FreeList_t<Chunk_t> {
friend class TreeChunk<Chunk_t, FreeList_t>;