Skip to content

Commit

Permalink
Merge pull request #595 from madsbk/noexcept
Browse files Browse the repository at this point in the history
bhxx: removed a noexcept that fails on older OSX
  • Loading branch information
madsbk authored Feb 19, 2019
2 parents e6547cd + 8f5dacd commit 06536af
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 06536af

Please sign in to comment.