summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Otto <martijn.otto@copernica.com>2015-08-31 08:53:35 +0200
committerMartijn Otto <martijn.otto@copernica.com>2015-08-31 08:53:35 +0200
commit913cc8ac69ec9cc6705b26575644e887c2dedc30 (patch)
tree6bb82430a4925a84d2dce4be9fdcc5005670005b
parent2b05fbb7f0e0c05d8c34848465efd86f8010be32 (diff)
Remove noexcept specification from a function that can throw. Fixes #219
-rw-r--r--include/array.h2
1 files changed, 1 insertions, 1 deletions
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;