1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +01:00

[helpers] Set default flags of ExternalRAMAllocator to ALLOW_FAILURE (#7201)

This commit is contained in:
Jesse Hills
2024-08-06 22:02:08 +12:00
committed by GitHub
parent e6b1780a31
commit b0d9800817

View File

@@ -680,7 +680,7 @@ template<class T> class ExternalRAMAllocator {
} }
private: private:
Flags flags_{Flags::NONE}; Flags flags_{Flags::ALLOW_FAILURE};
}; };
/// @} /// @}