Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/uuid/uuid_io.hpp @ 101:c530137014c0
Update Boost headers (1.58.0)
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:12:49 +0100 |
parents | 2665513ce2d3 |
children |
comparison
equal
deleted
inserted
replaced
100:793467b5e61c | 101:c530137014c0 |
---|---|
57 os << os.widen('-'); | 57 os << os.widen('-'); |
58 } | 58 } |
59 } | 59 } |
60 | 60 |
61 if (flags & std::ios_base::left) { | 61 if (flags & std::ios_base::left) { |
62 for (std::streamsize i=uuid_width; i<width; i++) { | 62 for (std::streamsize s=uuid_width; s<width; s++) { |
63 os << fill; | 63 os << fill; |
64 } | 64 } |
65 } | 65 } |
66 | 66 |
67 os.width(0); //used the width so reset it | 67 os.width(0); //used the width so reset it |