Ignore:
Timestamp:
Dec 22, 2005, 11:35:00 PM (19 years ago)
Author:
mjs
Message:
  • fix build problem from last commit.
  • kxmlcore/RefPtr.h: (KXMLCore::::swap):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kxmlcore/RefPtr.h

    r11739 r11741  
    2323#ifndef KXMLCORE_REF_PTR_H
    2424#define KXMLCORE_REF_PTR_H
     25
     26#include <algorithm>
    2527
    2628namespace KXMLCore {
     
    143145    template <class T> inline void RefPtr<T>::swap(RefPtr<T>& o)
    144146    {
    145         stap(m_ptr, o.m_ptr);
     147        swap(m_ptr, o.m_ptr);
    146148    }
    147149
Note: See TracChangeset for help on using the changeset viewer.