aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-02-03 10:48:24 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2023-02-03 10:48:24 +0000
commit6640abbeead2b7fedfe4d8bebcade5fa2fe3b6c0 (patch)
tree7c8ba05db16df6c4ae2869bfa0447affd732e596 /messagebus
parentab0f053be2cdb4f36b8866ca7c9ba557a676539d (diff)
Consistent naming and correct type.
Diffstat (limited to 'messagebus')
-rw-r--r--messagebus/src/vespa/messagebus/testlib/custompolicy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/messagebus/src/vespa/messagebus/testlib/custompolicy.cpp b/messagebus/src/vespa/messagebus/testlib/custompolicy.cpp
index db5f2d17973..c7db802420d 100644
--- a/messagebus/src/vespa/messagebus/testlib/custompolicy.cpp
+++ b/messagebus/src/vespa/messagebus/testlib/custompolicy.cpp
@@ -37,8 +37,8 @@ CustomPolicy::select(RoutingContext &context)
str.append(" }.");
context.trace(1, str);
context.setSelectOnRetry(_selectOnRetry);
- for (unsigned int & _consumableError : _consumableErrors) {
- context.addConsumableError(_consumableError);
+ for (uint32_t consumableError : _consumableErrors) {
+ context.addConsumableError(consumableError);
}
context.addChildren(_routes);
}