--- Represent/represent.cpp 2004/12/21 11:21:00 365 +++ Represent/represent.cpp 2004/12/21 11:22:38 366 @@ -35,13 +35,7 @@ Binary::Binary(std::string& string, bool std::string::size_type index(0); - _rmforeach (std::vector, byte, bytes) - { - _rfor (char, bit, 0, 8) - { - *byte |= (string[index++] == '1') << bit; - } - } + _rmforeach (std::vector, byte, bytes) _rfor (char, bit, 0, 8) *byte |= (string[index++] == '1') << bit; } template