--- Represent/Hexadecimal.cpp 2004/12/27 22:43:01 398 +++ Represent/Hexadecimal.cpp 2005/03/10 03:08:17 422 @@ -17,7 +17,7 @@ Hexadecimal::Hexadecimal(const ext::Stri size_t index(string.GetSize() % 2), offset(index); - _rmforeach (ext::Vector, byte, bytes) _rfor (byte_t, half, 0, 2) *byte |= hex(string[index++]) << half * 4; + _rforeach (ext::Vector, byte, bytes) _rfor (byte_t, half, 0, 2) *byte |= hex(string[index++]) << half * 4; if (offset != 0) { @@ -32,7 +32,7 @@ Hexadecimal::operator ext::String() cons { ext::String string; - _rforeach (ext::Vector, byte, bytes) _rfor (byte_t, half, 0, 2) + _rforeach (const ext::Vector, byte, bytes) _rfor (byte_t, half, 0, 2) { byte_t hex(0xF & *byte >> half * 4);