mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 15:48:05 +00: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
@ -2,6 +2,7 @@
|
|||||||
#define __BITCOIN_CORE_IO_H__
|
#define __BITCOIN_CORE_IO_H__
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
class uint256;
|
class uint256;
|
||||||
class CScript;
|
class CScript;
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
|
|
||||||
#include <vector>
|
|
||||||
#include "core_io.h"
|
#include "core_io.h"
|
||||||
#include "core.h"
|
#include "core.h"
|
||||||
#include "serialize.h"
|
#include "serialize.h"
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
|
|
||||||
#include <vector>
|
|
||||||
#include "core_io.h"
|
#include "core_io.h"
|
||||||
#include "univalue/univalue.h"
|
#include "univalue/univalue.h"
|
||||||
#include "script.h"
|
#include "script.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user