From 913cc8ac69ec9cc6705b26575644e887c2dedc30 Mon Sep 17 00:00:00 2001 From: Martijn Otto Date: Mon, 31 Aug 2015 08:53:35 +0200 Subject: Remove noexcept specification from a function that can throw. Fixes #219 --- include/array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/array.h b/include/array.h index cf9c349..126cd58 100644 --- a/include/array.h +++ b/include/array.h @@ -113,7 +113,7 @@ public: * @param value * @return Array */ - Array &operator=(Value &&value) _NOEXCEPT + Array &operator=(Value &&value) { // skip self assignment if (this == &value) return *this; -- cgit v1.2.3