Skip to content

Commit 2474124

Browse files
committed
Merge pull request #439 from kariya-mitsuru/fix-typo
[swappable.requirements] add comma
2 parents 70550aa + ae28126 commit 2474124

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)