summaryrefslogtreecommitdiff
path: root/docs/CodingStandards.rst
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-04-17 18:02:34 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-04-17 18:02:34 +0000
commit5bcd7106b5aa60da1648b7c5e8426205092c1954 (patch)
treeb572bcce22bc519d497525e515abac8366bccc27 /docs/CodingStandards.rst
parent9e383d4b48b359c2b44df2a54edbabc465a3dff4 (diff)
downloadllvm-5bcd7106b5aa60da1648b7c5e8426205092c1954.tar.gz
llvm-5bcd7106b5aa60da1648b7c5e8426205092c1954.tar.bz2
llvm-5bcd7106b5aa60da1648b7c5e8426205092c1954.tar.xz
C++11: Document some limitations imposed by MSVC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206480 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodingStandards.rst')
-rw-r--r--docs/CodingStandards.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/CodingStandards.rst b/docs/CodingStandards.rst
index 529464aa28..a90e94b450 100644
--- a/docs/CodingStandards.rst
+++ b/docs/CodingStandards.rst
@@ -108,6 +108,7 @@ unlikely to be supported by our host compilers.
* Lambdas: N2927_
* But *not* ``std::function``, until Clang implements `MSVC-compatible RTTI`_.
+ * And *not* lambdas with default arguments.
* ``decltype``: N2343_
* Nested closing right angle brackets: N1757_
@@ -116,6 +117,11 @@ unlikely to be supported by our host compilers.
* Strongly-typed and forward declarable enums: N2347_, N2764_
* Local and unnamed types as template arguments: N2657_
* Range-based for-loop: N2930_
+
+ * But ``{}`` are required around inner ``do {} while()`` loops. As a result,
+ ``{}`` are required around function-like macros inside range-based for
+ loops.
+
* ``override`` and ``final``: N2928_, N3206_, N3272_
* Atomic operations and the C++11 memory model: N2429_