X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fdbms.oracle%2FInputBind.cpp;h=0a703be600ee1c0ca888cd1fb613000d21539d7e;hb=ab67c412220051d6a96be8c65179ee29712bf006;hp=66b4285949d891a22dfc4818563bbff5ca9368ea;hpb=39033fd99e58e994a5e98c1060dcc79e0d81f9c9;p=anna.git diff --git a/source/dbms.oracle/InputBind.cpp b/source/dbms.oracle/InputBind.cpp index 66b4285..0a703be 100644 --- a/source/dbms.oracle/InputBind.cpp +++ b/source/dbms.oracle/InputBind.cpp @@ -187,9 +187,9 @@ throw() { char* dest = const_cast (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); }