Skip to content

Commit 3566bbc

Browse files
sdkrystianzygoloid
authored andcommitted
[temp.mem] Change instantiation to specialization
1 parent 08df35f commit 3566bbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/templates.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2616,7 +2616,7 @@
26162616

26172617
class D : public B {
26182618
template <class T> void f(T); // does not override \tcode{B::f(int)}
2619-
void f(int i) { f<>(i); } // overriding function that calls the template instantiation
2619+
void f(int i) { f<>(i); } // overriding function that calls the function template specialization
26202620
};
26212621
\end{codeblock}
26222622
\end{example}

0 commit comments

Comments
 (0)