diff options
author | Mattes D <github@xoft.cz> | 2014-12-06 23:02:49 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-12-06 23:03:17 +0100 |
commit | 263fabc81661b76edc36330ef42cd6be947aa91c (patch) | |
tree | cb1ab66810528bea4a31c332e550a925b4ffe8f2 /src/HTTPServer | |
parent | Merge pull request #1647 from mc-server/SocketThreadsFix (diff) | |
download | cuberite-263fabc81661b76edc36330ef42cd6be947aa91c.tar cuberite-263fabc81661b76edc36330ef42cd6be947aa91c.tar.gz cuberite-263fabc81661b76edc36330ef42cd6be947aa91c.tar.bz2 cuberite-263fabc81661b76edc36330ef42cd6be947aa91c.tar.lz cuberite-263fabc81661b76edc36330ef42cd6be947aa91c.tar.xz cuberite-263fabc81661b76edc36330ef42cd6be947aa91c.tar.zst cuberite-263fabc81661b76edc36330ef42cd6be947aa91c.zip |
Diffstat (limited to 'src/HTTPServer')
-rw-r--r-- | src/HTTPServer/HTTPFormParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HTTPServer/HTTPFormParser.h b/src/HTTPServer/HTTPFormParser.h index edc6d2471..d9d29d9bc 100644 --- a/src/HTTPServer/HTTPFormParser.h +++ b/src/HTTPServer/HTTPFormParser.h @@ -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; |