summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-01-15 23:14:32 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-01-16 15:41:24 +0000
commitb1bc742e8ac18dd41ea8f19919005257fbfa277b (patch)
treeecfb64cefacd9ec7addb9dff8b42da186a26a0d8 /vespalib
parentd3cf455cba32ef3f5280634470858e80761d8450 (diff)
Remove complicated option for slicing as it is not used anywhere.
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/util/alloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespalib/src/vespa/vespalib/util/alloc.h b/vespalib/src/vespa/vespalib/util/alloc.h
index b52cace45a5..03ebc2807f9 100644
--- a/vespalib/src/vespa/vespalib/util/alloc.h
+++ b/vespalib/src/vespa/vespalib/util/alloc.h
@@ -59,13 +59,13 @@ public:
bool resize_inplace(size_t newSize);
Alloc(const Alloc &) = delete;
Alloc & operator = (const Alloc &) = delete;
- Alloc(Alloc && rhs) :
+ Alloc(Alloc && rhs) noexcept :
_alloc(rhs._alloc),
_allocator(rhs._allocator)
{
rhs.clear();
}
- Alloc & operator=(Alloc && rhs) {
+ Alloc & operator=(Alloc && rhs) noexcept {
if (this != & rhs) {
if (_alloc.first != nullptr) {
_allocator->free(_alloc);