mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-22 10:02:34 +02:00
refactor: Drop deprecated space in operator""_mst
Github-Pull: #31267
Rebased-From: faf2162565
This commit is contained in:
parent
9976162a0e
commit
446f5d20d6
@ -1,14 +1,17 @@
|
|||||||
// Copyright (c) 2019-2022 The Bitcoin Core developers
|
// Copyright (c) 2019-present The Bitcoin Core developers
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#include <string>
|
#include <limits>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <script/script.h>
|
|
||||||
#include <script/miniscript.h>
|
|
||||||
#include <serialize.h>
|
|
||||||
|
|
||||||
#include <assert.h>
|
#include <primitives/transaction.h>
|
||||||
|
#include <script/miniscript.h>
|
||||||
|
#include <script/script.h>
|
||||||
|
#include <script/solver.h>
|
||||||
|
#include <span.h>
|
||||||
|
#include <util/check.h>
|
||||||
|
#include <util/vector.h>
|
||||||
|
|
||||||
namespace miniscript {
|
namespace miniscript {
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// Copyright (c) 2019-2022 The Bitcoin Core developers
|
// Copyright (c) 2019-present The Bitcoin Core developers
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
@ -6,20 +6,24 @@
|
|||||||
#define BITCOIN_SCRIPT_MINISCRIPT_H
|
#define BITCOIN_SCRIPT_MINISCRIPT_H
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <functional>
|
#include <compare>
|
||||||
#include <numeric>
|
#include <cstdint>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <iterator>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <string>
|
#include <set>
|
||||||
|
#include <stdexcept>
|
||||||
|
#include <tuple>
|
||||||
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include <assert.h>
|
#include <consensus/consensus.h>
|
||||||
#include <cstdlib>
|
|
||||||
|
|
||||||
#include <policy/policy.h>
|
#include <policy/policy.h>
|
||||||
#include <primitives/transaction.h>
|
#include <script/interpreter.h>
|
||||||
#include <script/parsing.h>
|
#include <script/parsing.h>
|
||||||
#include <script/script.h>
|
#include <script/script.h>
|
||||||
|
#include <serialize.h>
|
||||||
#include <span.h>
|
#include <span.h>
|
||||||
#include <util/check.h>
|
#include <util/check.h>
|
||||||
#include <util/strencodings.h>
|
#include <util/strencodings.h>
|
||||||
@ -150,7 +154,8 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
//! Literal operator to construct Type objects.
|
//! Literal operator to construct Type objects.
|
||||||
inline consteval Type operator"" _mst(const char* c, size_t l) {
|
inline consteval Type operator""_mst(const char* c, size_t l)
|
||||||
|
{
|
||||||
Type typ{Type::Make(0)};
|
Type typ{Type::Make(0)};
|
||||||
|
|
||||||
for (const char *p = c; p < c + l; p++) {
|
for (const char *p = c; p < c + l; p++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user