Index: src/libchcore/TPathContainer.cpp =================================================================== diff -u -N -ra4635addad389b9e117679437a3e1b64a739ea96 -rb26ced3298e3e7e51d91f3ac70b56746786da83b --- src/libchcore/TPathContainer.cpp (.../TPathContainer.cpp) (revision a4635addad389b9e117679437a3e1b64a739ea96) +++ src/libchcore/TPathContainer.cpp (.../TPathContainer.cpp) (revision b26ced3298e3e7e51d91f3ac70b56746786da83b) @@ -36,18 +36,6 @@ } // ============================================================================ - /// TPathContainer::TPathContainer - /// @date 2009/11/30 - /// - /// @brief Constructs the path container object from another path container. - /// @param[in] rSrcContainer - path container to copy paths from. - // ============================================================================ - TPathContainer::TPathContainer(const TPathContainer& rSrcContainer) : - m_vPaths(rSrcContainer.m_vPaths) - { - } - - // ============================================================================ /// TPathContainer::~TPathContainer /// @date 2009/11/30 /// @@ -58,22 +46,6 @@ } // ============================================================================ - /// TPathContainer::operator= - /// @date 2009/11/30 - /// - /// @brief Assigns another path container object to this one. - /// @param[in] rSrcContainer - container with paths to copy from. - /// @return Reference to this object. - // ============================================================================ - TPathContainer& TPathContainer::operator=(const TPathContainer& rSrcContainer) - { - if (this != &rSrcContainer) - m_vPaths = rSrcContainer.m_vPaths; - - return *this; - } - - // ============================================================================ /// TPathContainer::Add /// @date 2009/11/30 ///