diff options
author | Ben Woosley <ben.woosley@gmail.com> | 2023-03-06 17:22:33 +0100 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2023-03-13 17:09:47 +0100 |
commit | e7333b420e35054d9302f9c58fd47b6152cbd35f (patch) | |
tree | b7dd521363eeedcc4e2f353624facbe8cc679372 /src/qt/bitcoin.cpp | |
parent | f7bdcfc83f5753349018be3b5a663c8923d1a5eb (diff) |
refactor: Extract util/exception from util/system
This is a minimal extraction of a single function, but also the only use
of std::exception in util/system.
The background of this commit is an ongoing effort to decouple the
libbitcoinkernel library from the ArgsManager defined in system.h.
Moving the function out of system.h allows including it from a separate
source file without including the ArgsManager definitions from system.h.
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 5244b72689..2c413e8b43 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -29,6 +29,7 @@ #include <qt/utilitydialog.h> #include <qt/winshutdownmonitor.h> #include <uint256.h> +#include <util/exception.h> #include <util/string.h> #include <util/system.h> #include <util/threadnames.h> |