Suuports clang compiler
[anna.git] / source / dbms.oracle / InputBind.cpp
index 66b4285..0a703be 100644 (file)
@@ -187,9 +187,9 @@ throw() {
 
   char* dest = const_cast <char*>(a_ofb->getData());
 
-  register int j = 0;
+  int j = 0;
 
-  for(register int i = 0; i < length; i ++) {
+  for(int i = 0; i < length; i ++) {
     dest [j ++] = asCharacter((src [i] & 0xf0) >> 4);
     dest [j ++] = asCharacter(src [i] & 0x0f);
   }