Updated license
[anna.git] / source / core / util / String.cpp
index b066c3e..bb8b6ef 100644 (file)
@@ -1,4 +1,4 @@
-// ANNA - Anna is Not 'N' Anymore
+// ANNA - Anna is Not Nothingness Anymore
 //
 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
 //
@@ -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);