From 907181bbdf74b186d41a7d3ac62dcd2f7bac8a6d Mon Sep 17 00:00:00 2001 From: Rechi Date: Mon, 1 Jul 2024 10:44:24 +1000 Subject: [clang-tidy] modernize-make-shared --- xbmc/pvr/channels/PVRChannelGroups.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/pvr/channels/PVRChannelGroups.cpp b/xbmc/pvr/channels/PVRChannelGroups.cpp index 79a5283eb9..65055c7e5b 100644 --- a/xbmc/pvr/channels/PVRChannelGroups.cpp +++ b/xbmc/pvr/channels/PVRChannelGroups.cpp @@ -79,7 +79,7 @@ void CPVRChannelGroups::Unload() m_groups.clear(); m_allChannelsGroup.reset(); - m_channelGroupFactory.reset(new CPVRChannelGroupFactory); + m_channelGroupFactory = std::make_shared(); m_failedClientsForChannelGroups.clear(); } -- cgit v1.2.3