0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

Export assert from util/check.h

This avoids having to include both headers when assert and Assert are
used at the same time.
This commit is contained in:
MarcoFalke 2023-11-24 11:09:41 +01:00
parent 930bcfd4cd
commit fa971c09f2
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,7 @@
#include <attributes.h>
#include <cassert> // IWYU pragma: export
#include <stdexcept>
#include <string>
#include <string_view>

View file

@ -7,6 +7,7 @@
#include <test/fuzz/fuzz.h>
#include <test/fuzz/util.h>
#include <test/util/setup_common.h>
#include <util/check.h>
#include <util/translation.h>
#include <wallet/context.h>
#include <wallet/receive.h>
@ -14,7 +15,6 @@
#include <wallet/walletdb.h>
#include <wallet/walletutil.h>
#include <cassert>
#include <cstdint>
#include <string>
#include <vector>