Skip to content

Commit 52b754d

Browse files
committed
fix warnings
1 parent 69287af commit 52b754d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/settings/rp2040/RP2040FlashSettingsStorage.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,18 @@ RegisterIO& RP2040FlashSettingsStorage::operator>>(uint32_t& value) {
8181

8282

8383
RegisterIO& RP2040FlashSettingsStorage::operator<<(uint8_t value) {
84-
84+
// TODO implement me!
85+
return *this;
8586
};
8687

8788
RegisterIO& RP2040FlashSettingsStorage::operator<<(float value) {
88-
89+
// TODO implement me!
90+
return *this;
8991
};
9092

9193
RegisterIO& RP2040FlashSettingsStorage::operator<<(uint32_t value) {
92-
94+
// TODO implement me!
95+
return *this;
9396
};
9497

9598
#endif

0 commit comments

Comments
 (0)