[llvm] r206481 - C++11: Compatibility with (C++03 => MSVC)
Duncan P. N. Exon Smith
dexonsmith at apple.com
Thu Apr 17 11:02:36 PDT 2014
Author: dexonsmith
Date: Thu Apr 17 13:02:36 2014
New Revision: 206481
URL: http://llvm.org/viewvc/llvm-project?rev=206481&view=rev
Log:
C++11: Compatibility with (C++03 => MSVC)
Modified:
llvm/trunk/docs/CodingStandards.rst
Modified: llvm/trunk/docs/CodingStandards.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodingStandards.rst?rev=206481&r1=206480&r2=206481&view=diff
==============================================================================
--- llvm/trunk/docs/CodingStandards.rst (original)
+++ llvm/trunk/docs/CodingStandards.rst Thu Apr 17 13:02:36 2014
@@ -1284,9 +1284,9 @@ method will never be implemented. This e
``-Wunused-private-field`` to run correctly on classes that contain these
methods.
-To maintain compatibility with C++03, ``LLVM_DELETED_FUNCTION`` should be used
-which will expand to ``= delete`` if the compiler supports it. These methods
-should still be declared private. Example of the uncopyable pattern:
+For compatibility with MSVC, ``LLVM_DELETED_FUNCTION`` should be used which
+will expand to ``= delete`` on compilers that support it. These methods should
+still be declared private. Example of the uncopyable pattern:
.. code-block:: c++
More information about the llvm-commits
mailing list