mirror of
https://github.com/esphome/esphome.git
synced 2024-11-13 02:37:47 +01:00
Bugfix for ExternalRAMAllocator copy constructor (#3571)
This commit is contained in:
parent
01bfafc5f1
commit
c8b58b5c23
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue