Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion include/flucoma/data/FluidTensor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ class FluidTensor //: public FluidTensorBase<T,N>
{
static_assert(std::is_convertible<U, T>::value,
"Cannot convert between container value types");
std::copy(x.begin(), x.end(), mContainer.begin());
// summer 2025: std::copy failing CI on windows (server 2022, MSVC 19.44)
// seems like it's not recognising conversion and trying a straight memmove or something
// std::copy(x.begin(), x.end(), mContainer.begin());
// works ok if forced through assignment operator instead !?
*this = x;
}

template <typename U, size_t M>
Expand Down
Loading