replace deprecated std::auto_ptr by std::unique_ptr

This commit is contained in:
Steffen Vogel 2017-10-30 01:04:57 +01:00
parent e63427c2da
commit f818423d04

View file

@ -18,6 +18,6 @@ namespace Transport {
private:
int level;
std::auto_ptr<Swift::PayloadParser> currentPayloadParser;
std::unique_ptr<Swift::PayloadParser> currentPayloadParser;
};
}