Utils: Add stddev support to Statistics
[senf.git] / senf / Utils / StatisticsTargets.ct
index 9bb386a..881ed18 100644 (file)
 template <class Stream, class Area, class Level>
 prefix_ void senf::detail::StatisticsLogger<Stream,Area,Level>::operator()(float min,
                                                                            float avg,
-                                                                           float max)
+                                                                           float max,
+                                                                           float dev)
 {
-    SENF_LOG_TPL((StatisticsStream)(Stream)(Area)(Level)(label << min << " " << avg << " " << max));
+    SENF_LOG_TPL((StatisticsStream)(Stream)(Area)(Level)(
+                     label << min << ' ' << avg << ' ' << max << ' ' << dev));
 }
 
 ///////////////////////////////ct.e////////////////////////////////////////