Bazel client, Windows: fix compilation bug
This was breaking the CI.
--
PiperOrigin-RevId: 149300839
MOS_MIGRATED_REVID=149300839
diff --git a/src/main/cpp/util/file_windows.cc b/src/main/cpp/util/file_windows.cc
index 145d5da..f763f9e 100644
--- a/src/main/cpp/util/file_windows.cc
+++ b/src/main/cpp/util/file_windows.cc
@@ -531,8 +531,7 @@
// Join all segments.
std::wostringstream builder;
bool first = true;
- for (std::vector<wstring>::const_reverse_iterator& it = segments.crbegin();
- it != segments.crend(); ++it) {
+ for (auto it = segments.crbegin(); it != segments.crend(); ++it) {
if (!first || !IsRootDirectoryW(wpath)) {
builder << L'\\' << *it;
} else {