aboutsummaryrefslogtreecommitdiff
path: root/src/core_io.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2014-08-01 08:32:41 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2014-08-01 08:38:23 +0200
commit1b73d36b2c71c92044012dc736215bf95f2e908b (patch)
tree0aef469fb838ff13b203c81b94cd7d8238fd90b1 /src/core_io.h
parentc0e9548b6305d315735ecd6dacc3c88acd6a6c7a (diff)
downloadbitcoin-1b73d36b2c71c92044012dc736215bf95f2e908b.tar.xz
fix compilation error in core_io.h
- error: 'vector' in namespace 'std' does not name a type - add <vector> include in core_io.h - remove <vector> includes from core_read.cpp and core_write.cpp
Diffstat (limited to 'src/core_io.h')
-rw-r--r--src/core_io.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core_io.h b/src/core_io.h
index 8a7d580570..26a1293dfd 100644
--- a/src/core_io.h
+++ b/src/core_io.h
@@ -2,6 +2,7 @@
#define __BITCOIN_CORE_IO_H__
#include <string>
+#include <vector>
class uint256;
class CScript;