diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2018-11-13 14:41:43 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2018-11-13 14:52:03 +0100 |
commit | c51e1516a930fe035217ed19d48a3bb726e6b28d (patch) | |
tree | 29a07d5e59203992a6be104793594175df5ba7b1 | |
parent | ce7fcc3569097b641a91126de1e6051654eb88f9 (diff) | |
parent | 27154ce765971619efcd2ee59384c549957711f5 (diff) |
Merge #14714: util.h: explicitly include required QString header
27154ce765971619efcd2ee59384c549957711f5 util.h: explicitly include required QString header (1Il1)
Pull request description:
Alternative to #14713.
Instead of depending on clang formatter to not reorder includes, another fix is to explicitly include the missing header file.
Tree-SHA512: f419ef2fd1dfd8da28160a94d187af78463fb398ef6aadd6c68ebf57e6d02380d93f5f370bf2d39e88dcbfeb252c3e5f245c0a157c7d0a64c38fc0f0c7004515
-rw-r--r-- | src/qt/test/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/test/util.h b/src/qt/test/util.h index 5363c94547..377f07dcba 100644 --- a/src/qt/test/util.h +++ b/src/qt/test/util.h @@ -1,6 +1,8 @@ #ifndef BITCOIN_QT_TEST_UTIL_H #define BITCOIN_QT_TEST_UTIL_H +#include <QString> + /** * Press "Ok" button in message box dialog. * |