From 8f5dacd1b515173ff2a08e7aa95b886b6416a0fe Mon Sep 17 00:00:00 2001 From: "Mads R. B. Kristensen" Date: Tue, 19 Feb 2019 12:35:40 +0100 Subject: [PATCH] bhxx: removed a noexcept that fails on older OSX --- bridge/cxx/include/bhxx/BhArray.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge/cxx/include/bhxx/BhArray.hpp b/bridge/cxx/include/bhxx/BhArray.hpp index 56f1b58f1..3622424fe 100644 --- a/bridge/cxx/include/bhxx/BhArray.hpp +++ b/bridge/cxx/include/bhxx/BhArray.hpp @@ -241,7 +241,7 @@ class BhArray : public BhArrayUnTypedCore { BhArray(const BhArray &) = default; /** Move constructor that only moves meta data. The underlying array data is untouched */ - BhArray(BhArray &&) noexcept = default; + BhArray(BhArray &&) = default; /** Copy the data of `other` into the array using a Bohrium `identity` operation */ BhArray &operator=(const BhArray &other) {