From: Richard Smith
Date: Sun, 26 Feb 2012 07:09:21 +0000 (+0000)
Subject: Update release notes and language extensions pages to note that support for
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88189556c5d620f2c46ea5599b95456b4da138b5;p=clang
Update release notes and language extensions pages to note that support for
generalized initializers is available.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151477 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html
index cdd197956f..8a631e90be 100644
--- a/docs/LanguageExtensions.html
+++ b/docs/LanguageExtensions.html
@@ -711,8 +711,7 @@ deleted function definitions (with = delete) is enabled.
Use __has_feature(cxx_generalized_initializers) to determine if
support for generalized initializers (using braced lists and
-std::initializer_list) is enabled. Clang does not currently implement
-this feature.
+std::initializer_list) is enabled.
C++11 implicit move constructors/assignment operators
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index cb0eec4e80..81b12c0f08 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -122,9 +122,7 @@ following are now considered to be of production quality:
- Generalized constant expressions
- Lambda expressions
-