From 35c7959c530c010da718892fd3948467f104d267 Mon Sep 17 00:00:00 2001 From: Alexey Rybalchenko Date: Mon, 21 Sep 2020 18:48:27 +0200 Subject: [PATCH] Workaround Cpp17MoveInsertable issue on xcode 12 --- fairmq/FairMQChannel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fairmq/FairMQChannel.h b/fairmq/FairMQChannel.h index ba6ea31c..f472a99c 100644 --- a/fairmq/FairMQChannel.h +++ b/fairmq/FairMQChannel.h @@ -66,13 +66,13 @@ class FairMQChannel FairMQChannel(const FairMQChannel&, const std::string& name); /// Move constructor - FairMQChannel(FairMQChannel&&) = delete; + // FairMQChannel(FairMQChannel&&) = delete; /// Assignment operator FairMQChannel& operator=(const FairMQChannel&); /// Move assignment operator - FairMQChannel& operator=(FairMQChannel&&) = delete; + // FairMQChannel& operator=(FairMQChannel&&) = delete; /// Destructor virtual ~FairMQChannel()