mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
SDK: Fix exception specification
This commit is contained in:
parent
0d182dc18f
commit
246e99a577
|
@ -178,8 +178,8 @@ class BasicTopology : public AsioBase<Executor, Allocator>
|
|||
BasicTopology& operator=(const BasicTopology&) = delete;
|
||||
|
||||
/// movable
|
||||
BasicTopology(BasicTopology&&) noexcept = default;
|
||||
BasicTopology& operator=(BasicTopology&&) noexcept = default;
|
||||
BasicTopology(BasicTopology&&) = default;
|
||||
BasicTopology& operator=(BasicTopology&&) = default;
|
||||
|
||||
~BasicTopology()
|
||||
{
|
||||
|
|
|
@ -45,8 +45,8 @@ struct Region
|
|||
|
||||
Region() = delete;
|
||||
|
||||
Region(const Region&) = default;
|
||||
Region(Region&&) = default;
|
||||
Region(const Region&) = delete;
|
||||
Region(Region&&) = delete;
|
||||
|
||||
void InitializeQueues();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user