Skip to content

Commit

Permalink
fix: Make attachments compile with old GCC
Browse files Browse the repository at this point in the history
I had no idea noexcept could make an explicitly defaulted function
become implicitly deleted...
  • Loading branch information
wbthomason committed Jun 26, 2024
1 parent dd8be9b commit 56470cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/impl/vamp/collision/attachments.hh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace vamp::collision
{
}

Attachment(const Attachment &) noexcept = default;
Attachment(const Attachment &) = default;

template <typename DT = DataT, typename = std::enable_if_t<not std::is_same_v<DT, float>>>
Attachment(const Attachment<float> &o) noexcept
Expand Down

0 comments on commit 56470cf

Please sign in to comment.