diff options
| author | Cory Fields <[email protected]> | 2014-12-18 20:17:28 -0500 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-02-03 23:30:59 -0500 |
| commit | 5a6155ccfa7ee8bb2187054c67f750101986588f (patch) | |
| tree | 7637a86b5c8e77caf3af820ac20bce10539af56b | |
| parent | c++11: MOVEONLY: break circular dependency in wallet (diff) | |
| download | discoin-5a6155ccfa7ee8bb2187054c67f750101986588f.tar.xz discoin-5a6155ccfa7ee8bb2187054c67f750101986588f.zip | |
c++11: don't forward-declare types used in maps
| -rw-r--r-- | src/keystore.cpp | 2 | ||||
| -rw-r--r-- | src/keystore.h | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/keystore.cpp b/src/keystore.cpp index 22cd08f30..7531737e0 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -7,8 +7,6 @@ #include "crypter.h" #include "key.h" -#include "script/script.h" -#include "script/standard.h" #include "util.h" #include <boost/foreach.hpp> diff --git a/src/keystore.h b/src/keystore.h index 6655264d7..4a4b6d20a 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -8,14 +8,13 @@ #include "key.h" #include "pubkey.h" +#include "script/script.h" +#include "script/standard.h" #include "sync.h" #include <boost/signals2/signal.hpp> #include <boost/variant.hpp> -class CScript; -class CScriptID; - /** A virtual base class for key stores */ class CKeyStore { |