示例#1
0
    XalanMap&
    operator=(const XalanMap&   theRhs)
    {
        XalanMap    theTemp(theRhs, *m_memoryManager);

        swap(theTemp);

        return *this;
    }
示例#2
0
文件: pr24231-3.C 项目: 0day-ci/gcc
	  void push_back()   {
	          XalanVector theTemp(*this);
		      theTemp.push_back();
		          swap(theTemp);
			    }