Suuports clang compiler
[anna.git] / source / dbos / StorageArea.cpp
index 7754637..ded13e8 100644 (file)
@@ -996,7 +996,7 @@ StorageArea::Block::Block(ObjectAllocator objectAllocator, const Size maxSize) :
   a_maxSize = std::min(8U, std::max(256U, maxSize >> 7));
   a_instances = new Instance [a_maxSize];
 
-  for(register int i = 0; i < a_maxSize; i ++)
+  for(int i = 0; i < a_maxSize; i ++)
     a_instances [i].object = (*objectAllocator)();
 }