~singpolyma/biboumi

6a43d350bed472f8e52525d9afc2d40ee72cef7e — Florent Le Coz 10 years ago 3d92360
Add include for perror
2 files changed, 5 insertions(+), 3 deletions(-)

M src/network/poller.cpp
M src/network/socket_handler.cpp
M src/network/poller.cpp => src/network/poller.cpp +2 -1
@@ 1,10 1,11 @@
#include <network/poller.hpp>

#include <assert.h>
#include <stdio.h>

#include <cstring>
#include <iostream>


Poller::Poller()
{
  std::cout << "Poller()" << std::endl;

M src/network/socket_handler.cpp => src/network/socket_handler.cpp +3 -2
@@ 3,11 3,12 @@
#include <utils/scopeguard.hpp>
#include <network/poller.hpp>

#include <sys/types.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#include <cstring>
#include <netdb.h>
#include <unistd.h>
#include <stdio.h>

#include <iostream>