Sep 11 2024 update

This commit is contained in:
Ned Wright
2024-09-11 15:01:30 +00:00
parent f4bad4c4d9
commit ed307d4778
49 changed files with 369 additions and 174 deletions

View File

@@ -76,7 +76,7 @@ public:
writeToSocket(const std::string &msg)
{
acceptSocket();
EXPECT_EQ(write(connection_fd, msg.data(), msg.size()), msg.size());
EXPECT_EQ(write(connection_fd, msg.data(), msg.size()), static_cast<int>(msg.size()));
}
private: