From 5563e0584b48a03a136e5ed06de54f8f802709fc Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 9 Sep 2020 10:45:18 +0800 Subject: [PATCH] crimson/common: move continuation_base_from_future out of internal namespace MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit otherwise we have ../src/crimson/common/errorator.h:1090:8: error: specialization of ‘template struct seastar::continuation_base_from_future’ in different namespace [-fpermissive] 1090 | struct continuation_base_from_future>> { | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ since seastar has moved its continuation_base_from_future() out of seastar::internal into seastar namespace Signed-off-by: Kefu Chai --- src/crimson/common/errorator.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/crimson/common/errorator.h b/src/crimson/common/errorator.h index d6301769394af..306c3cc6d0ad9 100644 --- a/src/crimson/common/errorator.h +++ b/src/crimson/common/errorator.h @@ -1084,12 +1084,10 @@ private: friend class future; }; -namespace internal { template