Skip to content

Commit 1339fdd

Browse files
authored
[temp.deduct.type] Remove excessive spacing in example (#6541)
1 parent d02a12a commit 1339fdd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/templates.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8225,11 +8225,11 @@
82258225
that cause type deduction to fail:
82268226

82278227
\begin{codeblock}
8228-
template <class T, class U> void f( T (*)( T, U, U ) );
8228+
template <class T, class U> void f(T (*)(T, U, U));
82298229

8230-
int g1( int, float, float);
8231-
char g2( int, float, float);
8232-
int g3( int, char, float);
8230+
int g1(int, float, float);
8231+
char g2(int, float, float);
8232+
int g3(int, char, float);
82338233

82348234
void r() {
82358235
f(g1); // OK, \tcode{T} is \tcode{int} and \tcode{U} is \tcode{float}

0 commit comments

Comments
 (0)