diff options
Diffstat (limited to 'src/prevector.h')
-rw-r--r-- | src/prevector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prevector.h b/src/prevector.h index f36cfe4ff6..d3e4b8fd0d 100644 --- a/src/prevector.h +++ b/src/prevector.h @@ -264,7 +264,7 @@ public: fill(item_ptr(0), other.begin(), other.end()); } - prevector(prevector<N, T, Size, Diff>&& other) { + prevector(prevector<N, T, Size, Diff>&& other) noexcept { swap(other); } @@ -276,7 +276,7 @@ public: return *this; } - prevector& operator=(prevector<N, T, Size, Diff>&& other) { + prevector& operator=(prevector<N, T, Size, Diff>&& other) noexcept { swap(other); return *this; } |