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 09c0f97 commit ba68c70Copy full SHA for ba68c70
talk/basicconcepts/functions.tex
@@ -341,7 +341,7 @@
341
struct T {...}; T a;
342
void fVal(T value); fVal(a); // by value
343
void fRef(const T &value); fRef(a); // by reference
344
-void fPtr(const T *value); fPtr(|{\setlength{\fboxsep}{0pt}\color{gray}\colorbox{yellow}{\textsc{&}}}|a); // by pointer
+void fPtr(const T *value); fPtr(|{\setlength{\fboxsep}{0pt}\color{gray}\colorbox{yellow}{\textsc{\&}}}|a); // by pointer
345
void fWrite(T &value); fWrite(a); // non-const ref
346
\end{cppcode*}
347
\end{block}
0 commit comments