From f818423d045421e29dd0c37008ea9d249eea1a30 2017-10-30 15:07:44 From: Steffen Vogel Date: 2017-10-30 15:07:44 Subject: [PATCH] replace deprecated std::auto_ptr by std::unique_ptr --- diff --git a/spectrum/src/frontends/xmpp/storageparser.h b/spectrum/src/frontends/xmpp/storageparser.h index c19d7553f0f409359c13bc403003217e9920135d..7e5dea0a93fbf2c74c9ca43332a370ca61f4f2a3 100644 --- a/spectrum/src/frontends/xmpp/storageparser.h +++ b/spectrum/src/frontends/xmpp/storageparser.h @@ -18,6 +18,6 @@ namespace Transport { private: int level; - std::auto_ptr currentPayloadParser; + std::unique_ptr currentPayloadParser; }; }