diff options
author | fanquake <fanquake@gmail.com> | 2022-06-09 16:26:55 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-07-08 11:06:01 +0100 |
commit | 07f2c25d04c39a0074e1d9ee1b24b3e359c8153f (patch) | |
tree | 167946c643c37689ecaf75756038cc88c8c43fcf /src/util/error.cpp | |
parent | a7f3479ba3fda4c9fb29bd7080165744c02ee921 (diff) |
refactor: add most of src/util to iwyu
These files change infrequently, and not much header shuffling is required.
We don't add everything in src/util/ yet, because IWYU makes some
dubious suggestions, which I'm going to follow up with upstream.
Diffstat (limited to 'src/util/error.cpp')
-rw-r--r-- | src/util/error.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/error.cpp b/src/util/error.cpp index 22a5964279..33a35a6d59 100644 --- a/src/util/error.cpp +++ b/src/util/error.cpp @@ -5,9 +5,11 @@ #include <util/error.h> #include <tinyformat.h> -#include <util/system.h> #include <util/translation.h> +#include <cassert> +#include <string> + bilingual_str TransactionErrorString(const TransactionError err) { switch (err) { |