Remove core-comm dependency through CounterManager/timex in core/oam subsystem. Basic...
[anna.git] / source / statistics / Accumulator.cpp
index 9600b6e..efd319a 100644 (file)
@@ -341,7 +341,7 @@ std::string Accumulator::asString(const int & numberOfDecimals) const throw() {
     trace += conceptDescription; trace += " ("; trace += conceptUnitDescription; trace += ")";
 
     if(ptrConceptData->Size != 0) {
-      trace += "\n   Sample Size:                 "; trace += anna::functions::asString((anna::Unsigned64)(ptrConceptData->Size));
+      trace += "\n   Sample Size:                 "; trace += anna::functions::asString((anna::U64)(ptrConceptData->Size));
       trace += "\n   Average:                     "; trace += anna::functions::asString(fFormat.c_str(), ptrConceptData->Average);
       trace += "\n   Standard Deviation:          "; trace += anna::functions::asString(fFormat.c_str(), getStandardDeviation(ptrConceptData));
 
@@ -433,7 +433,7 @@ anna::xml::Node* Accumulator::asXML(anna::xml::Node* parent, const int & numberO
     anna::xml::Node* data = concept->createChild("Data");
 
     if(ptrConceptData->Size != 0) {
-      data->createAttribute("Size", anna::functions::asString((anna::Unsigned64)ptrConceptData->Size));
+      data->createAttribute("Size", anna::functions::asString((anna::U64)ptrConceptData->Size));
       data->createAttribute("Average", anna::functions::asString(fFormat.c_str(), ptrConceptData->Average));
       data->createAttribute("StandardDeviation", anna::functions::asString(fFormat.c_str(), getStandardDeviation(ptrConceptData)));