Skip to content

Commit ae28126

Browse files
[swappable.requirements] add comma
1 parent 70550aa commit ae28126

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/lib-intro.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,7 @@
14471447

14481448
// Requires: lvalues of \tcode{T} shall be swappable.
14491449
template <class T>
1450-
void lv_swap(T& t1 T& t2) {
1450+
void lv_swap(T& t1, T& t2) {
14511451
using std::swap;
14521452
swap(t1, t2); // OK: uses swappable conditions for
14531453
} // lvalues of type \tcode{T}

0 commit comments

Comments
 (0)