add semi-colons to macros consistently

This commit is contained in:
Aaron Kimbre
2022-08-05 08:40:12 -05:00
parent 88f316bf93
commit 9e4ce24fd2
8 changed files with 332 additions and 332 deletions

View File

@@ -8,8 +8,8 @@
#include <string>
void MasterPackets::SendPersistentIDRequest(dServer* server, uint64_t requestID) {
CBITSTREAM
PacketUtils::WriteHeader(bitStream, MASTER, MSG_MASTER_REQUEST_PERSISTENT_ID);
CBITSTREAM;
PacketUtils::WriteHeader(bitStream, MASTER, MSG_MASTER_REQUEST_PERSISTENT_ID);
bitStream.Write(requestID);
server->SendToMaster(&bitStream);
}