Commit 995e29f0 authored by unknown's avatar unknown
Browse files

ndb - super pool - compile fix

remove extra qualification which picky gcc complains about


ndb/src/kernel/vm/SuperPool.hpp:
  remove extra qualification which picky gcc complains about
parent 1dd5f747
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -212,8 +212,8 @@ public:
  // Doubly-linked list of pages.  There is one free list in super pool
  // and free, active, full list in each record pool.
  struct PageList {
    PageList::PageList();
    PageList::PageList(PtrI pageI);
    PageList();
    PageList(PtrI pageI);
    PtrI m_headPageI;
    PtrI m_tailPageI;
    Uint32 m_pageCount;