diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-07-18 15:11:18 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-07-18 15:54:38 +0200 |
commit | e0d459264fa9330eea99d33208fbddb8c8362be4 (patch) | |
tree | 5a8bc23b4ef11691f0421485466d670650bbeb8b /src/rpc/misc.cpp | |
parent | 7b6e8bc4424006119dc537699c8b3b3121e0b3c3 (diff) |
Avoid redundant redeclaration of GetWarnings(const string&)
std::string GetWarnings(const std::string& strFor) is declared in
warnings.h and defined in warnings.cpp.
Diffstat (limited to 'src/rpc/misc.cpp')
-rw-r--r-- | src/rpc/misc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp index fcbbe1ceed..3c4f071fcf 100644 --- a/src/rpc/misc.cpp +++ b/src/rpc/misc.cpp @@ -21,6 +21,7 @@ #include "wallet/wallet.h" #include "wallet/walletdb.h" #endif +#include "warnings.h" #include <stdint.h> #ifdef HAVE_MALLOC_INFO |