Skip to content

Commit

Permalink
tidy: Fix 'avoid duplicating the type name' warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Oct 26, 2022
1 parent e0bcb25 commit 1f067dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythbackend/servicesv2/v2grabber.h
Expand Up @@ -81,7 +81,7 @@ class V2GrabberList : public QObject
{
for (const auto& entry : m_Grabbers)
{
V2Grabber *grabber = entry.value<V2Grabber*>();
auto *grabber = entry.value<V2Grabber*>();
if (grabber->GetProgram() == program)
return true;
}
Expand Down

0 comments on commit 1f067dc

Please sign in to comment.