Patch #649 » convert-GPSAltitudeRef.patch
| 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 |
} |