void swap()

in src/xalanc/Include/XalanList.hpp [421:426]


    void swap(ThisType& theRHS)
    {
        std::swap(m_memoryManager, theRHS.m_memoryManager);
        std::swap(m_listHead, theRHS.m_listHead);
        std::swap(m_freeListHeadPtr, theRHS.m_freeListHeadPtr);
    }