Remove unused and broken AudioBuffer implicit conversions

This commit is contained in:
Jean Pierre Cimalando 2020-06-11 03:49:49 +02:00
parent b0e7c9dba3
commit d564a289c9

View file

@ -292,22 +292,6 @@ public:
addChannel();
}
/**
* @brief Convert implicitly to a pointer of channels
*/
operator const Type* const*() const noexcept
{
return buffers.data();
}
/**
* @brief Convert implicitly to a pointer of channels
*/
operator Type* const*() noexcept
{
return buffers.data();
}
private:
using buffer_type = Buffer<Type, Alignment>;
using buffer_ptr = std::unique_ptr<buffer_type>;