fix raw pointer usage

This commit is contained in:
Günter Obiltschnig 2020-01-22 09:22:35 +01:00
parent c7faa18660
commit 4d0eeb257e

View File

@ -38,7 +38,7 @@ void LogStreamTest::testLogStream()
{
AutoPtr<TestChannel> pChannel = new TestChannel;
Logger& root = Logger::root();
root.setChannel(pChannel.get());
root.setChannel(pChannel);
LogStream ls(root);