Skip to content

Commit

Permalink
Update ch11.tex
Browse files Browse the repository at this point in the history
  • Loading branch information
MeouSker77 authored Sep 22, 2024
1 parent 0b75446 commit 7b441d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion latex/src/ch11.tex
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ \subsubsection{折叠函数调用}
也就是说,你现在可以简单写出如下实现:
\begin{lstlisting}
template<typename... Types>
void callFoo(Types&&... args)
void callFoo(const Types&... args)
{
...
(... , foo(args)); // 调用foo(arg1),foo(arg2),foo(arg3),...
Expand Down

0 comments on commit 7b441d9

Please sign in to comment.