summaryrefslogtreecommitdiffstats
path: root/docs/CodingStandards.rst
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2016-12-15 19:08:02 +0000
committerReid Kleckner <rnk@google.com>2016-12-15 19:08:02 +0000
commit36850aafe28023e5ac0ad52abf0997c152ec7e95 (patch)
tree81044469a0bb21c45d7d2206c77ff231bd5a2bee /docs/CodingStandards.rst
parent18e2348b674a6b5477462c3d4437ebf50528f1a8 (diff)
Fix some remaining documentation references to MSVC 2013
MSVC 2015 has been the minimum supported version of VS since October. Differential Revision: https://reviews.llvm.org/D25710 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@289854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodingStandards.rst')
-rw-r--r--docs/CodingStandards.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/CodingStandards.rst b/docs/CodingStandards.rst
index 2aab3fc992f1..722718bf4f16 100644
--- a/docs/CodingStandards.rst
+++ b/docs/CodingStandards.rst
@@ -131,9 +131,8 @@ unlikely to be supported by our host compilers.
* Delegating constructors: N1986_
* Default member initializers (non-static data member initializers): N2756_
- * Only use these for scalar members that would otherwise be left
- uninitialized. Non-scalar members generally have appropriate default
- constructors.
+ * Feel free to use these wherever they make sense and where the `=`
+ syntax is allowed. Don't use braced initialization syntax.
.. _N2118: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2118.html
.. _N2439: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2439.htm