diff --git a/Socket.cpp b/Socket.cpp index 8b0cdf6..522202a 100644 --- a/Socket.cpp +++ b/Socket.cpp @@ -137,7 +137,6 @@ namespace core { outlock.lock(); fifo.emplace(data); outlock.unlock(); -// ePoll.resetSocket(this); return 1; } diff --git a/Timer.cpp b/Timer.cpp index de868db..8f74c8d 100644 --- a/Timer.cpp +++ b/Timer.cpp @@ -4,7 +4,6 @@ namespace core { Timer::Timer(EPoll &ePoll, double delay = 0.0f) : Socket(ePoll, "Timer") { setDescriptor(timerfd_create(CLOCK_REALTIME, 0)); -// ePoll.registerSocket(this); setTimer(delay); }