aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2011-02-23 00:41:16 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2011-02-23 00:41:16 +0000
commitfd405efea156302c4b9d8e26e9cd3eddef5bf9b0 (patch)
tree85c9d6be2499dcd4204ca7256453f7611cc3fd88 /docs
parent406c38e8c1f105acfd438f94dfbc17af817aa4a5 (diff)
Update the www to indicate that auto is now implemented.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126280 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LanguageExtensions.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html
index 8f412c6365..b0de13a91e 100644
--- a/docs/LanguageExtensions.html
+++ b/docs/LanguageExtensions.html
@@ -419,8 +419,7 @@ compile-time assertions using <tt>static_assert</tt> is enabled.</p>
<p>Use <tt>__has_feature(cxx_auto_type)</tt> to determine C++0x type inference
is supported using the <tt>auto</tt> specifier. If this is disabled,
-<tt>auto</tt> will instead be a storage class specifier, as in C or C++98.
-Clang does not currently implement this feature.</p>
+<tt>auto</tt> will instead be a storage class specifier, as in C or C++98.</p>
<h3 id="cxx_variadic_templates">C++0x variadic templates</h3>