mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
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
This commit is contained in:
parent
c0e9548b63
commit
1b73d36b2c
3 changed files with 1 additions and 2 deletions
|
@ -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…
Reference in a new issue