[llvm-branch-commits] [cfe-branch] r198626 - Clang 3.4 release notes: Fix description of enum increment/decrement change in

Richard Smith richard-llvm at metafoo.co.uk
Mon Jan 6 10:35:01 PST 2014


Author: rsmith
Date: Mon Jan  6 12:35:01 2014
New Revision: 198626

URL: http://llvm.org/viewvc/llvm-project?rev=198626&view=rev
Log:
Clang 3.4 release notes: Fix description of enum increment/decrement change in
Clang 3.4. Add link to referenced PR.

Modified:
    cfe/branches/release_34/docs/ReleaseNotes.rst

Modified: cfe/branches/release_34/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/release_34/docs/ReleaseNotes.rst?rev=198626&r1=198625&r2=198626&view=diff
==============================================================================
--- cfe/branches/release_34/docs/ReleaseNotes.rst (original)
+++ cfe/branches/release_34/docs/ReleaseNotes.rst Mon Jan  6 12:35:01 2014
@@ -88,7 +88,7 @@ improvements since the 3.3 release inclu
 
 - Boolean increment, a deprecated feature, has own warning flag
   -Wdeprecated-increment-bool, and is still part of -Wdeprecated.
-- Clang errors on builtin enum increments and decrements.
+- Clang errors on builtin enum increments and decrements in C++.
 
   .. code-block:: c++
 
@@ -99,7 +99,7 @@ improvements since the 3.3 release inclu
     }
 
   returns
-  `error: must use 'enum' tag to refer to type 'A'`
+  `error: cannot increment expression of enum type 'A'`
 
 
 - -Wloop-analysis now warns on for-loops which have the same increment or
@@ -177,7 +177,7 @@ C++ Language Changes in Clang
 
 - Fixed an ABI regression, introduced in Clang 3.2, which affected
   member offsets for classes inheriting from certain classes with tail padding.
-  See PR16537.
+  See `PR16537 <http://llvm.org/PR16537>`_.
 
 - Clang 3.4 supports the 2013-08-28 draft of the ISO WG21 SG10 feature test
   macro recommendations. These aim to provide a portable method to determine





More information about the llvm-branch-commits mailing list