We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c05c804 commit 2877f1eCopy full SHA for 2877f1e
source/basic.tex
@@ -299,10 +299,10 @@
299
C() : s() { }
300
C(const C& x): s(x.s) { }
301
C(C&& x): s(static_cast<std::string&&>(x.s)) { }
302
- @\rlap{\normalfont\itshape //}@ : s(std::move(x.s)) { }
+ @\rlap{\textnormal{\textit{//}}}@ : s(std::move(x.s)) { }
303
C& operator=(const C& x) { s = x.s; return *this; }
304
C& operator=(C&& x) { s = static_cast<std::string&&>(x.s); return *this; }
305
- @\rlap{\normalfont\itshape //}@ { s = std::move(x.s); return *this; }
+ @\rlap{\textnormal{\textit{//}}}@ { s = std::move(x.s); return *this; }
306
~C() { }
307
};
308
\end{codeblock}
0 commit comments