From fa21ca09a807e18476babe2651ad62df6477bbf0 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Tue, 20 Nov 2018 18:41:32 -0500 Subject: test: Add BOOST_REQUIRE to getters returning optional --- src/util/system.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util') diff --git a/src/util/system.h b/src/util/system.h index bebb089a2a..85e4c8e6cd 100644 --- a/src/util/system.h +++ b/src/util/system.h @@ -150,7 +150,7 @@ protected: std::set m_network_only_args GUARDED_BY(cs_args); std::map> m_available_args GUARDED_BY(cs_args); - bool ReadConfigStream(std::istream& stream, std::string& error, bool ignore_invalid_keys = false); + NODISCARD bool ReadConfigStream(std::istream& stream, std::string& error, bool ignore_invalid_keys = false); public: ArgsManager(); @@ -161,7 +161,7 @@ public: void SelectConfigNetwork(const std::string& network); NODISCARD bool ParseParameters(int argc, const char* const argv[], std::string& error); - bool ReadConfigFiles(std::string& error, bool ignore_invalid_keys = false); + NODISCARD bool ReadConfigFiles(std::string& error, bool ignore_invalid_keys = false); /** * Log warnings for options in m_section_only_args when -- cgit v1.2.3