Message statistics
[anna.git] / source / statistics / Meter.cpp
index 9c9de5f..bf4c3f8 100644 (file)
@@ -26,9 +26,9 @@ using namespace anna::statistics;
 //------------------------------------------------------------------------------
 
 // Default Constructor
-Meter::Meter(const std::string & description) : a_accumulator(description) {
+Meter::Meter(const std::string & name) : a_accumulator(name) {
   Engine& statsEngine = Engine::instantiate();
-  a_single_accumulator_concept_id = statsEngine.addConcept(description, "ms", true);
+  a_single_accumulator_concept_id = statsEngine.addConcept(name, "ms", true);
 }