diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-03-20 13:26:40 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-03-20 13:26:40 +0100 |
commit | 9327d65dc5eccff475bcda8a9f114e9862122d93 (patch) | |
tree | 29adc72e5477298d5b6c7b4f66e90fbacc76a6e3 | |
parent | 0817299b8450bc42b1078042c4c59f339ff31ea1 (diff) | |
download | kube-9327d65dc5eccff475bcda8a9f114e9862122d93.tar.gz kube-9327d65dc5eccff475bcda8a9f114e9862122d93.zip |
Avoid warning about using c++14 extensions.
-rw-r--r-- | framework/src/errors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/src/errors.h b/framework/src/errors.h index 4ab2b1a6..c8ed22e3 100644 --- a/framework/src/errors.h +++ b/framework/src/errors.h | |||
@@ -138,7 +138,7 @@ protected: | |||
138 | } | 138 | } |
139 | } | 139 | } |
140 | 140 | ||
141 | constexpr StorageBase &operator=(StorageBase &&other) | 141 | StorageBase &operator=(StorageBase &&other) |
142 | { | 142 | { |
143 | this->~StorageBase(); | 143 | this->~StorageBase(); |
144 | mIsValue = other.mIsValue; | 144 | mIsValue = other.mIsValue; |