diff options
| author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-13 02:03:45 +0000 |
|---|---|---|
| committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-13 02:03:45 +0000 |
| commit | 88db3171dd5dcc54e3890b6f823c60831fc520a5 (patch) | |
| tree | 152ba3680b06c51899bab0a2ad95ea083ef0b976 /libcxx/include/regex | |
| parent | ce17b0f5b805630bb71f99bfdf820e2c57a34f7e (diff) | |
| download | bcm5719-llvm-88db3171dd5dcc54e3890b6f823c60831fc520a5.tar.gz bcm5719-llvm-88db3171dd5dcc54e3890b6f823c60831fc520a5.zip | |
Don't neglect to "return *this".
llvm-svn: 165860
Diffstat (limited to 'libcxx/include/regex')
| -rw-r--r-- | libcxx/include/regex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/include/regex b/libcxx/include/regex index 3918ee0d678..7505f2ea329 100644 --- a/libcxx/include/regex +++ b/libcxx/include/regex @@ -2562,6 +2562,7 @@ public: { __member_init(__f); __parse(__first, __last); + return *this; } #ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS |

