From e5774e21ed68f3ccc0f339affea6487b6cbde47c Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Sat, 12 Dec 2015 00:06:37 +0100 Subject: [PATCH] [4234] Fixed stats_mgr.h --- src/lib/stats/stats_mgr.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/lib/stats/stats_mgr.h b/src/lib/stats/stats_mgr.h index 748f86ddb2..8ed8e48bd0 100644 --- a/src/lib/stats/stats_mgr.h +++ b/src/lib/stats/stats_mgr.h @@ -367,6 +367,8 @@ class StatsMgr : public boost::noncopyable { } } + /// @public + /// @brief Adds specified value to a given statistic (internal version). /// /// This template method adds specified value to a given statistic (identified @@ -395,12 +397,14 @@ class StatsMgr : public boost::noncopyable { } } + /// @public + /// @brief Adds a new observation. /// /// That's an utility method used by public @ref setValue() and /// @ref addValue() methods. - /// @param obs observation - void addObservation(const ObservationPtr& o); + /// @param stat observation + void addObservation(const ObservationPtr& stat); /// @private