From 2b05fbb7f0e0c05d8c34848465efd86f8010be32 Mon Sep 17 00:00:00 2001 From: Martijn Otto Date: Fri, 28 Aug 2015 16:18:19 +0200 Subject: Remove NOEXCEPT specification for the Array constructor since it can throw. Closes #219 --- include/array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/array.h b/include/array.h index c4250d4..cf9c349 100644 --- a/include/array.h +++ b/include/array.h @@ -38,7 +38,7 @@ public: * Move constructor from a value object * @param value */ - Array(Value &&value) _NOEXCEPT : Value(std::move(value)) + Array(Value &&value) : Value(std::move(value)) { // type must be valid if (value.type() != Type::Array) throw FatalError("Moving a non-array to an array variable"); -- cgit v1.2.3