fix: Get rid of warnings on clang-cl (#6528)

This commit is contained in:
nerix
2025-10-25 16:14:20 +02:00
committed by GitHub
parent 6e443cd767
commit 7214c49e79
27 changed files with 124 additions and 105 deletions
+4 -1
View File
@@ -306,7 +306,10 @@ void Args::applyCustomChannelLayout(const QString &argValue, const Paths &paths)
// Set first tab as selected
tab.selected_ = window.tabs_.empty();
tab.rootNode_ = SplitNodeDescriptor{{"twitch", channelName}};
tab.rootNode_ = SplitNodeDescriptor{{
.type_ = "twitch",
.channelName_ = channelName,
}};
window.tabs_.emplace_back(std::move(tab));
}
+4
View File
@@ -33,6 +33,8 @@ void ChannelChatters::addJoinedUser(const QString &user, bool isMod,
assertInGuiThread();
if (isIgnoredMessage(IgnoredMessageParameters{
.message = {},
.twitchUserID = {},
.twitchUserLogin = user,
.isMod = isMod,
.isBroadcaster = isBroadcaster,
@@ -69,6 +71,8 @@ void ChannelChatters::addPartedUser(const QString &user, bool isMod,
assertInGuiThread();
if (isIgnoredMessage(IgnoredMessageParameters{
.message = {},
.twitchUserID = {},
.twitchUserLogin = user,
.isMod = isMod,
.isBroadcaster = isBroadcaster,