Remove core-comm dependency through CounterManager/timex in core/oam subsystem. Basic...
[anna.git] / source / core / util / String.cpp
index b066c3e..fc87b41 100644 (file)
@@ -82,7 +82,7 @@ throw() {
   return *this;
 }
 
-String& String::operator<< (const Integer64 vv)
+String& String::operator<< (const S64 vv)
 throw() {
   char aux [32];
   sprintf(aux, "%lld", vv);
@@ -97,7 +97,7 @@ throw() {
   return *this;
 }
 
-String& String::operator<< (const Unsigned64 vv)
+String& String::operator<< (const U64 vv)
 throw() {
   char aux [32];
   sprintf(aux, "%llu", vv);