fix vector::swap

master
Daniel Kolesa 2015-05-26 21:16:50 +01:00
parent 029575d4a6
commit 42167fdc5a
1 changed files with 3 additions and 3 deletions

View File

@ -306,9 +306,9 @@ namespace octa {
}
void swap(Vector &v) {
swap(p_len, v.p_len);
swap(p_cap, v.p_cap);
swap(p_buf, v.p_buf);
octa::swap(p_len, v.p_len);
octa::swap(p_cap, v.p_cap);
octa::swap(p_buf, v.p_buf);
}
};