Skip to content

Commit 0e37fe0

Browse files
author
Stefanus Du Toit
committed
[over.ics.list] Fix "1,0" -> "1.0" in code example.
1 parent 1326972 commit 0e37fe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/overloading.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2143,7 +2143,7 @@
21432143
};
21442144
void g(B);
21452145
g( {'a', 'b'} ); // OK: \tcode{g(B(int,double))} user-defined conversion
2146-
g( {1.0, 1,0} ); // error: narrowing
2146+
g( {1.0, 1.0} ); // error: narrowing
21472147

21482148
void f(B);
21492149
f( {'a', 'b'} ); // error: ambiguous \tcode{f(A)} or \tcode{f(B)}

0 commit comments

Comments
 (0)