Skip to content

Commit

Permalink
bhxx: removed a noexcept that fails on older OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Feb 19, 2019
1 parent e6547cd commit 8f5dacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge/cxx/include/bhxx/BhArray.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<T> &operator=(const BhArray<T> &other) {
Expand Down

0 comments on commit 8f5dacd

Please sign in to comment.