Commit acd305a3 authored by Chip Turner's avatar Chip Turner Committed by Sara Golemon

Fix folly/FBString.h build error

Summary:
Looks like D880140 left off this part when it was committed.

This fixes the build.

Test Plan: runtests

Reviewed By: vini@fb.com

FB internal diff: D881445
parent 2302d45a
......@@ -1532,7 +1532,7 @@ private:
for (; b != e; ++b) {
temp.push_back(*b);
}
temp.append(i, end());
temp.append(i, cend());
swap(temp);
return begin() + pos;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment