style fix

master
Daniel Kolesa 2015-05-18 01:59:04 +01:00
parent 767226a4ce
commit 700905f594
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ namespace octa {
T *get() noexcept { return p_buf; }
const T *get() const noexcept { return p_buf; }
void swap(Array &v) noexcept(swap(declval<T&>(), declval<T&>())) {
void swap(Array &v) noexcept(swap(declval<T &>(), declval<T &>())) {
swap(p_buf, v.p_buf);
}