mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Fix example in C.61
This commit is contained in:
parent
150744a8d3
commit
4b6e6eb190
|
@ -5730,7 +5730,7 @@ After a copy `x` and `y` can be independent objects (value semantics, the way no
|
||||||
X::X(const X& a)
|
X::X(const X& a)
|
||||||
:p{new T[a.sz]}, sz{a.sz}
|
:p{new T[a.sz]}, sz{a.sz}
|
||||||
{
|
{
|
||||||
copy(a.p, a.p + sz, a.p);
|
copy(a.p, a.p + sz, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
X x;
|
X x;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user