diff options
author | selsta <selsta@sent.at> | 2023-12-25 03:09:41 +0100 |
---|---|---|
committer | selsta <selsta@sent.at> | 2023-12-25 15:27:00 +0100 |
commit | 562bdb824b19f043b0e1a07e8b1b8f19fd270748 (patch) | |
tree | 29e302aee09f5013c04b00507727510423cc86f0 | |
parent | Merge pull request #9050 (diff) | |
download | monero-562bdb824b19f043b0e1a07e8b1b8f19fd270748.tar.xz |
storages: add missing return
-rw-r--r-- | contrib/epee/include/storages/portable_storage_from_bin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/epee/include/storages/portable_storage_from_bin.h b/contrib/epee/include/storages/portable_storage_from_bin.h index b0af022f5..9fcaf5d01 100644 --- a/contrib/epee/include/storages/portable_storage_from_bin.h +++ b/contrib/epee/include/storages/portable_storage_from_bin.h @@ -231,6 +231,7 @@ namespace epee default: CHECK_AND_ASSERT_THROW_MES(false, "unknown entry_type code = " << type); } + return read_ae<int8_t>(); // unreachable, dummy return to avoid compiler warning } inline @@ -322,6 +323,7 @@ namespace epee default: CHECK_AND_ASSERT_THROW_MES(false, "unknown entry_type code = " << ent_type); } + return read_se<int8_t>(); // unreachable, dummy return to avoid compiler warning } inline void throwable_buffer_reader::read(section& sec) |