From: Richard Smith Date: Fri, 23 Mar 2012 23:11:49 +0000 (+0000) Subject: Revert accidentally-committed www changes (and an unused diagnostic); X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec5a306dd4e8911f22997d84ce029affbb582132;p=clang Revert accidentally-committed www changes (and an unused diagnostic); forward-declared enums aren't /quite/ done yet. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153350 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 64c6acb25a..628079978e 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -125,7 +125,6 @@ following are now considered to be of production quality:
  • Generalized initializers
  • Unrestricted unions
  • User-defined literals
  • -
  • Forward-declared enumerations
  • diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index 405ae906e5..36232b1e98 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -1276,8 +1276,6 @@ def err_enum_class_reference : Error< "not 'enum class'">; def err_only_enums_have_underlying_types : Error< "only enumeration types have underlying types">; -def err_unscoped_enum_defined_out_of_class : Error< - "out-of-line definition of unscoped enumeration member is not supported">; // C++11 delegating constructors def err_delegating_ctor : Error< diff --git a/www/cxx_status.html b/www/cxx_status.html index 8305b73ec6..28da5f096b 100644 --- a/www/cxx_status.html +++ b/www/cxx_status.html @@ -158,7 +158,7 @@ with clang; other versions have not been tested.

    Forward declarations for enums N2764
    DR1206 - SVN + No Generalized attributes