From acd305a38177d7ce2853534330d542d640015440 Mon Sep 17 00:00:00 2001 From: Chip Turner Date: Wed, 10 Jul 2013 14:05:49 -0700 Subject: [PATCH] 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 --- folly/FBString.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folly/FBString.h b/folly/FBString.h index 04b90a7c..cc34fe66 100644 --- a/folly/FBString.h +++ b/folly/FBString.h @@ -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; } -- 2.34.1