Project

General

Profile

Patch #649 » convert-GPSAltitudeRef.patch

Vladimir Nadvornik, 06 Oct 2009 14:17

View differences:

value.cpp (working copy)
209 209
    {
210 210
        std::vector<byte>::size_type end = value_.size();
211 211
        for (std::vector<byte>::size_type i = 0; i != end; ++i) {
212
            os << static_cast<int>(value_[i]) << " ";
212
            os << static_cast<int>(value_[i]);
213
            if (i < end - 1) os << " ";
213 214
        }
214 215
        return os;
215 216
    }
(2-2/4)