aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus
diff options
context:
space:
mode:
Diffstat (limited to 'messagebus')
-rw-r--r--messagebus/src/tests/routing/routing.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/messagebus/src/tests/routing/routing.cpp b/messagebus/src/tests/routing/routing.cpp
index 6cbcb58b24a..e33996dcfb4 100644
--- a/messagebus/src/tests/routing/routing.cpp
+++ b/messagebus/src/tests/routing/routing.cpp
@@ -84,7 +84,7 @@ private:
public:
RemoveReplyPolicyFactory(bool selectOnRetry,
std::vector<uint32_t> consumableErrors,
- uint32_t idxRemove);
+ uint32_t idxRemove) noexcept;
~RemoveReplyPolicyFactory() override;
IRoutingPolicy::UP create(const string &param) override;
};
@@ -93,10 +93,10 @@ RemoveReplyPolicyFactory::~RemoveReplyPolicyFactory() = default;
RemoveReplyPolicyFactory::RemoveReplyPolicyFactory(bool selectOnRetry,
std::vector<uint32_t> consumableErrors,
- uint32_t idxRemove) :
- _selectOnRetry(selectOnRetry),
- _consumableErrors(std::move(consumableErrors)),
- _idxRemove(idxRemove)
+ uint32_t idxRemove) noexcept
+ : _selectOnRetry(selectOnRetry),
+ _consumableErrors(std::move(consumableErrors)),
+ _idxRemove(idxRemove)
{
// empty
}