Fix a bug in regex_token_iterator's copy constructor. Caught by Bob Wilson.

llvm-svn: 199122
diff --git a/libcxx/include/regex b/libcxx/include/regex
index f8569f9..b7416f8 100644
--- a/libcxx/include/regex
+++ b/libcxx/include/regex
@@ -6288,7 +6288,7 @@
       __subs_(__x.__subs_)
 {
     if (__x.__result_ == &__x.__suffix_)
-        __result_ == &__suffix_;
+        __result_ = &__suffix_;
     else if ( __result_ != nullptr )
         __establish_result ();
 }