File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class Monitoring
8282
8383 // / Enables metric buffering
8484 // / \param size buffer size
85- void enableBuffering (const unsigned int size = 128 );
85+ void enableBuffering (const std:: size_t size = 128 );
8686
8787 // / Adds global tag
8888 // / \param name tag name
@@ -128,7 +128,7 @@ class Monitoring
128128 bool mBuffering ;
129129
130130 // / Size of buffer
131- unsigned int mBufferSize ;
131+ std:: size_t mBufferSize ;
132132
133133 // / Store for automatically pushed metrics
134134 std::deque<ComplexMetric> mPushStore ;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Monitoring::Monitoring()
3333 mMonitorRunning = false ;
3434}
3535
36- void Monitoring::enableBuffering (const unsigned int size)
36+ void Monitoring::enableBuffering (const std:: size_t size)
3737{
3838 mBufferSize = size;
3939 mBuffering = true ;
You can’t perform that action at this time.
0 commit comments