summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2016-05-06 16:48:29 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2016-05-06 16:48:29 +0000
commit1a015f54817a0e98d6c981d5aeba8a1331f15240 (patch)
tree51bdce9a51958f527d6cf6338b7936ac3496c83a /clang
parent039f2ac3547933a4127294ccb2c3a8c70ac63589 (diff)
downloadbcm5719-llvm-1a015f54817a0e98d6c981d5aeba8a1331f15240.tar.gz
bcm5719-llvm-1a015f54817a0e98d6c981d5aeba8a1331f15240.zip
More fixes to codeblock formatting in documentation.
llvm-svn: 268749
Diffstat (limited to 'clang')
-rw-r--r--clang/docs/ReleaseNotes.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index a4c5c62b000..0e478514259 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -129,9 +129,9 @@ Changes to C++1z features since Clang 3.8:
.. code-block:: c++
- struct A { int n; };
- struct B : A { int x, y; };
- B b = { 1, 2, 3 }; // b.n == 1, b.x == 2, b.y == 3
+ struct A { int n; };
+ struct B : A { int x, y; };
+ B b = { 1, 2, 3 }; // b.n == 1, b.x == 2, b.y == 3
- The range in a range-based ``for`` statement can have different types for its ``begin``
and ``end`` iterators. This is permitted as an extension in C++11 onwards.
OpenPOWER on IntegriCloud