summaryrefslogtreecommitdiff
path: root/cpp/src/IceStorm/InstrumentationI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceStorm/InstrumentationI.cpp')
-rw-r--r--cpp/src/IceStorm/InstrumentationI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceStorm/InstrumentationI.cpp b/cpp/src/IceStorm/InstrumentationI.cpp
index 872c6b88f83..41cb2725243 100644
--- a/cpp/src/IceStorm/InstrumentationI.cpp
+++ b/cpp/src/IceStorm/InstrumentationI.cpp
@@ -241,7 +241,7 @@ namespace
struct QueuedUpdate
{
- QueuedUpdate(int count) : count(count)
+ QueuedUpdate(int countP) : count(countP)
{
}
@@ -265,7 +265,7 @@ namespace
struct OutstandingUpdate
{
- OutstandingUpdate(int count) : count(count)
+ OutstandingUpdate(int countP) : count(countP)
{
}
@@ -294,7 +294,7 @@ namespace
struct DeliveredUpdate
{
- DeliveredUpdate(int count) : count(count)
+ DeliveredUpdate(int countP) : count(countP)
{
}