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 8b866a4 commit 9876cbbCopy full SHA for 9876cbb
source/templates.tex
@@ -152,15 +152,15 @@
152
\begin{example}
153
\begin{codeblock}
154
void f();
155
-class f; // OK
+class f; // OK
156
namespace N {
157
void f(int);
158
}
159
-using N::f; // OK
160
-template<typename> void f(long); // OK
161
-template<typename> void f(long); // error: corresponding overload
162
-template<typename> void f(long long); // OK
163
-template<> void f<int>(long long); // OK, doesn't bind a name
+using N::f; // OK
+template<typename> void f(long); // OK
+template<typename> void f(long); // error: corresponding overload
+template<typename> void f(long long); // OK
+template<> void f<int>(long long); // OK, doesn't bind a name
164
\end{codeblock}
165
\end{example}
166
\end{note}
0 commit comments