1
0

Replaced most auto_ptr with unique_ptr.

This commit is contained in:
Mattes D
2014-12-06 23:02:49 +01:00
parent 3f23813412
commit 263fabc816
2 changed files with 62 additions and 62 deletions

View File

@@ -82,7 +82,7 @@ protected:
bool m_IsValid;
/// The parser for the multipart data, if used
std::auto_ptr<cMultipartParser> m_MultipartParser;
std::unique_ptr<cMultipartParser> m_MultipartParser;
/// Name of the currently parsed part in multipart data
AString m_CurrentPartName;