From bd5a8d52cc22503700bf087143ff79b3f83fe48b Mon Sep 17 00:00:00 2001 From: Christoph Hagen Date: Sat, 10 Feb 2024 11:31:10 +0100 Subject: [PATCH] Public inheritance for esp sources --- include/interface/ESP32CryptoSource.h | 2 +- include/interface/ESP32StorageSource.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/interface/ESP32CryptoSource.h b/include/interface/ESP32CryptoSource.h index cb1d5fb..b8bcaa5 100644 --- a/include/interface/ESP32CryptoSource.h +++ b/include/interface/ESP32CryptoSource.h @@ -3,7 +3,7 @@ #include "relay/interface/CryptoSource.h" #include "ESP32NoiseSource.h" -class ESP32CryptoSource: CryptoSource { +class ESP32CryptoSource: public CryptoSource { public: diff --git a/include/interface/ESP32StorageSource.h b/include/interface/ESP32StorageSource.h index 91ba815..ddfa641 100644 --- a/include/interface/ESP32StorageSource.h +++ b/include/interface/ESP32StorageSource.h @@ -1,7 +1,7 @@ #include "relay/interface/StorageSource.h" -class ESP32StorageSource: StorageSource { +class ESP32StorageSource: public StorageSource { bool writeByteAtIndex(uint8_t byte, uint16_t index) override;