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
pull/4616/head
Philip Kaufmann 10 years ago
parent c0e9548b63
commit 1b73d36b2c

@ -2,6 +2,7 @@
#define __BITCOIN_CORE_IO_H__
#include <string>
#include <vector>
class uint256;
class CScript;

@ -1,5 +1,4 @@
#include <vector>
#include "core_io.h"
#include "core.h"
#include "serialize.h"

@ -1,5 +1,4 @@
#include <vector>
#include "core_io.h"
#include "univalue/univalue.h"
#include "script.h"

Loading…
Cancel
Save