From 9327d65dc5eccff475bcda8a9f114e9862122d93 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 20 Mar 2018 13:26:40 +0100 Subject: Avoid warning about using c++14 extensions. --- framework/src/errors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: } } - constexpr StorageBase &operator=(StorageBase &&other) + StorageBase &operator=(StorageBase &&other) { this->~StorageBase(); mIsValue = other.mIsValue; -- cgit v1.2.3