Suuports clang compiler
[anna.git] / include / anna / core / functions.hpp
index f8d0680..164417b 100644 (file)
@@ -517,7 +517,7 @@ struct functions {
    * \return el nĂºmero de bits necesarios para representar el valor recibido como parĂ¡metro.
    */
   static int bitsize(const S64 n) throw() {
-    register int aux = n >> intBitSize;
+    int aux = n >> intBitSize;
     return (aux != 0) ? (bitsize(aux) + intBitSize) : bitsize((int) n);
   }