diff options
author | Michael Ford <fanquake@gmail.com> | 2015-03-29 19:45:05 +0800 |
---|---|---|
committer | Michael Ford <fanquake@gmail.com> | 2015-03-29 19:45:05 +0800 |
commit | 63e4c9cd355042d050e568c6164473c1bd6cc63d (patch) | |
tree | c07112cb631b15fd855f6590a1675aed4aad91f4 | |
parent | 8e4fd0cc315cad1e2925907ef7c62549a83730a5 (diff) |
Fix clang compile warnings intriduced in #5681
-rw-r--r-- | src/txdb.h | 2 | ||||
-rw-r--r-- | src/validationinterface.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/txdb.h b/src/txdb.h index 1ce93969d8..86e1c5d831 100644 --- a/src/txdb.h +++ b/src/txdb.h @@ -16,7 +16,7 @@ class CBlockFileInfo; class CBlockIndex; -class CDiskTxPos; +struct CDiskTxPos; class uint256; //! -dbcache default (MiB) diff --git a/src/validationinterface.h b/src/validationinterface.h index b21b6e5782..bee67d892f 100644 --- a/src/validationinterface.h +++ b/src/validationinterface.h @@ -9,7 +9,7 @@ #include <boost/signals2/signal.hpp> class CBlock; -class CBlockLocator; +struct CBlockLocator; class CTransaction; class CValidationInterface; class CValidationState; |