Skip to content

Commit d5cf39d

Browse files
committed
[clang] Fix code indentation in release notes for fixing how we handle pointers to non classes when calculating covariance.
1 parent 0b0452f commit d5cf39d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

clang/docs/ReleaseNotes.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ C++ Specific Potentially Breaking Changes
103103

104104
.. code-block:: c++
105105

106-
struct A {
107-
virtual const int *f() const;
108-
};
109-
struct B : A {
110-
// Return type has less cv-qualification but doesn't point to a class.
111-
// Error will be generated.
112-
int *f() const override;
113-
};
106+
struct A {
107+
virtual const int *f() const;
108+
};
109+
struct B : A {
110+
// Return type has less cv-qualification but doesn't point to a class.
111+
// Error will be generated.
112+
int *f() const override;
113+
};
114114
115115
ABI Changes in This Version
116116
---------------------------

0 commit comments

Comments
 (0)