Provide missing '{' in parsing extended quoted characters.  This fixes http://llvm.org/bugs/show_bug.cgi?id=16135

llvm-svn: 185211
diff --git a/libcxx/include/regex b/libcxx/include/regex
index 75c61db..52c9178 100644
--- a/libcxx/include/regex
+++ b/libcxx/include/regex
@@ -3420,6 +3420,7 @@
                 case '+':
                 case '?':
                 case '{':
+                case '}':
                     __push_char(*__temp);
                     __first = ++__temp;
                     break;