aboutsummaryrefslogtreecommitdiffstats
path: root/src/utility/path.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-07-12 22:28:02 +0000
committerVincent Richard <[email protected]>2005-07-12 22:28:02 +0000
commit681297e10b666e13cc463f6fbb16236f36c3266c (patch)
tree5d2392e2283232ed3475cd9c69e22897b03e8a97 /src/utility/path.cpp
parentAdded contentHandler::extractRaw(). (diff)
downloadvmime-681297e10b666e13cc463f6fbb16236f36c3266c.tar.gz
vmime-681297e10b666e13cc463f6fbb16236f36c3266c.zip
Reference counting and smart pointers.
Diffstat (limited to 'src/utility/path.cpp')
-rw-r--r--src/utility/path.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utility/path.cpp b/src/utility/path.cpp
index 5e6162ab..5dadefe1 100644
--- a/src/utility/path.cpp
+++ b/src/utility/path.cpp
@@ -38,6 +38,7 @@ path::path(const component& c)
path::path(const path& p)
+ : object()
{
m_list.resize(p.m_list.size());
std::copy(p.m_list.begin(), p.m_list.end(), m_list.begin());