Bugfix for ExternalRAMAllocator copy constructor (#3571)

This commit is contained in:
Benjamin Klotz 2022-06-17 03:32:43 +02:00 committed by Jesse Hills
parent aa0c2dedd9
commit 8a1034a92f
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -600,7 +600,7 @@ template<class T> class ExternalRAMAllocator {
ExternalRAMAllocator() = default;
ExternalRAMAllocator(Flags flags) : flags_{flags} {}
template<class U> constexpr ExternalRAMAllocator(const ExternalRAMAllocator<U> &other) : flags_{other.flags} {}
template<class U> constexpr ExternalRAMAllocator(const ExternalRAMAllocator<U> &other) : flags_{other.flags_} {}
T *allocate(size_t n) {
size_t size = n * sizeof(T);