From f818423d045421e29dd0c37008ea9d249eea1a30 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 30 Oct 2017 01:04:57 +0100 Subject: [PATCH] replace deprecated std::auto_ptr by std::unique_ptr --- spectrum/src/frontends/xmpp/storageparser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spectrum/src/frontends/xmpp/storageparser.h b/spectrum/src/frontends/xmpp/storageparser.h index c19d7553..7e5dea0a 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; }; }