From bf909f94dc880e3ceab240e59089cefb9bf73ccb Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Wed, 15 Jul 2020 13:41:39 +0200 Subject: [PATCH] ofi: adapt to the new API for FairMQSocket::Events --- fairmq/ofi/Socket.h | 1 + 1 file changed, 1 insertion(+) diff --git a/fairmq/ofi/Socket.h b/fairmq/ofi/Socket.h index 2a738f4a..39c57de1 100644 --- a/fairmq/ofi/Socket.h +++ b/fairmq/ofi/Socket.h @@ -45,6 +45,7 @@ class Socket final : public fair::mq::Socket auto GetId() const -> std::string override { return fId; } + auto Events(uint32_t *events) -> void override { *events = 0; } auto Bind(const std::string& address) -> bool override; auto Connect(const std::string& address) -> bool override;