From: Chip Turner Date: Wed, 10 Jul 2013 21:05:49 +0000 (-0700) Subject: Fix folly/FBString.h build error X-Git-Tag: v0.22.0~928 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=acd305a38177d7ce2853534330d542d640015440;p=folly.git 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 --- 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; }