aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ircv3_batch.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-03-17 06:07:41 +0000
committerGravatar Sadie Powell2021-03-17 06:07:41 +0000
commite2f8e75ab86c484e095ea5723f68a96698abbde2 (patch)
tree2a3e41f51536a8eabb1b6b3c2a5fb47bb1346fdb /src/modules/m_ircv3_batch.cpp
parentPascalize Get in extension item classes. (diff)
Pascalize Set in extension item classes.
Diffstat (limited to 'src/modules/m_ircv3_batch.cpp')
-rw-r--r--src/modules/m_ircv3_batch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_ircv3_batch.cpp b/src/modules/m_ircv3_batch.cpp
index 2677b24ad..4f5d8aa86 100644
--- a/src/modules/m_ircv3_batch.cpp
+++ b/src/modules/m_ircv3_batch.cpp
@@ -80,7 +80,7 @@ class IRCv3::Batch::ManagerImpl : public Manager
// Send the start batch command ("BATCH +reftag TYPE"), remember the user so we can send them a
// "BATCH -reftag" message later when the batch ends and set the flag we just checked so this is
// only done once per user per batch.
- batchbits.set(user, (bits | batch.GetBit()));
+ batchbits.Set(user, (bits | batch.GetBit()));
batch.batchinfo->users.push_back(user);
user->Send(batch.batchinfo->startevent);
}
@@ -173,7 +173,7 @@ class IRCv3::Batch::ManagerImpl : public Manager
{
LocalUser* const user = *i;
user->Send(batchinfo.endevent);
- batchbits.set(user, batchbits.Get(user) & ~batch.GetBit());
+ batchbits.Set(user, batchbits.Get(user) & ~batch.GetBit());
}
// erase() not swaperase because the reftag generation logic depends on the order of the elements