diff options
author | Vincent Richard <[email protected]> | 2013-11-21 21:16:57 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-11-21 21:16:57 +0000 |
commit | f9913fa28a27f23fde2d4956c62cbb2fb2bc2ee8 (patch) | |
tree | 2bdc90e361a8f6e0a81164cf67afec9f78f9b959 /src/textPartFactory.cpp | |
parent | Per-protocol include files. (diff) | |
download | vmime-f9913fa28a27f23fde2d4956c62cbb2fb2bc2ee8.tar.gz vmime-f9913fa28a27f23fde2d4956c62cbb2fb2bc2ee8.zip |
Boost/C++11 shared pointers.
Diffstat (limited to 'src/textPartFactory.cpp')
-rw-r--r-- | src/textPartFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textPartFactory.cpp b/src/textPartFactory.cpp index baad6292..85fea6e4 100644 --- a/src/textPartFactory.cpp +++ b/src/textPartFactory.cpp @@ -53,7 +53,7 @@ textPartFactory* textPartFactory::getInstance() } -ref <textPart> textPartFactory::create(const mediaType& type) +shared_ptr <textPart> textPartFactory::create(const mediaType& type) { for (MapType::const_iterator it = m_map.begin() ; it != m_map.end() ; ++it) |