diff options
Diffstat (limited to '3rdParty/Boost/src/boost/uuid/uuid_io.hpp')
-rw-r--r-- | 3rdParty/Boost/src/boost/uuid/uuid_io.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdParty/Boost/src/boost/uuid/uuid_io.hpp b/3rdParty/Boost/src/boost/uuid/uuid_io.hpp index 592a509..1d30618 100644 --- a/3rdParty/Boost/src/boost/uuid/uuid_io.hpp +++ b/3rdParty/Boost/src/boost/uuid/uuid_io.hpp @@ -56,13 +56,13 @@ template <typename ch, typename char_traits> if (i == 3 || i == 5 || i == 7 || i == 9) { os << os.widen('-'); } } if (flags & std::ios_base::left) { - for (std::streamsize i=uuid_width; i<width; i++) { + for (std::streamsize s=uuid_width; s<width; s++) { os << fill; } } os.width(0); //used the width so reset it } |