commit | 88db3171dd5dcc54e3890b6f823c60831fc520a5 | [log] [tgz] |
---|---|---|
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | Sat Oct 13 02:03:45 2012 +0000 |
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | Sat Oct 13 02:03:45 2012 +0000 |
tree | 152ba3680b06c51899bab0a2ad95ea083ef0b976 | |
parent | ce17b0f5b805630bb71f99bfdf820e2c57a34f7e [diff] [blame] |
Don't neglect to "return *this". llvm-svn: 165860
diff --git a/libcxx/include/string b/libcxx/include/string index 7c022dc..89a00e5 100644 --- a/libcxx/include/string +++ b/libcxx/include/string
@@ -2208,6 +2208,7 @@ clear(); for (; __first != __last; ++__first) push_back(*__first); + return *this; } template <class _CharT, class _Traits, class _Allocator>