// Copyright (c) 2017-2019 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_OPTIONAL_H #define BITCOIN_OPTIONAL_H #include #include //! Substitute for C++17 std::optional template using Optional = boost::optional; //! Substitute for C++17 std::make_optional template Optional MakeOptional(bool condition, T&& value) { return boost::make_optional(condition, std::forward(value)); } //! Substitute for C++17 std::nullopt static auto& nullopt = boost::none; #endif // BITCOIN_OPTIONAL_H