Skip to content
Snippets Groups Projects
Commit 899aa881 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Fix for bad warning fix

parent 4e0ca8fe
No related branches found
No related tags found
No related merge requests found
Pipeline #11203 passed
......@@ -7,6 +7,7 @@
#include <thread>
#include <chrono>
#include <ftl/net/common.hpp>
#include <ftl/net/peer.hpp>
#include <ftl/net/protocol.hpp>
#include <ftl/config.h>
......@@ -34,7 +35,7 @@ using std::chrono::milliseconds;
class MockPeer : public Peer {
public:
MockPeer() : Peer(INVALID_SOCKET) {}
MockPeer() : Peer((SOCKET)0) {}
void mock_data() { data(); }
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment