From 700905f59454b2377d006624931e59c7c3cb5672 Mon Sep 17 00:00:00 2001 From: q66 Date: Mon, 18 May 2015 01:59:04 +0100 Subject: [PATCH] style fix --- octa/array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octa/array.h b/octa/array.h index b91f9d2..e5490df 100644 --- a/octa/array.h +++ b/octa/array.h @@ -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(), declval())) { + void swap(Array &v) noexcept(swap(declval(), declval())) { swap(p_buf, v.p_buf); }