mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-23 06:55:37 +02:00
Add missing includes
This commit is contained in:
parent
3e1bf71064
commit
c2bd588860
@ -5,6 +5,8 @@
|
||||
#ifndef BITCOIN_INDIRECTMAP_H
|
||||
#define BITCOIN_INDIRECTMAP_H
|
||||
|
||||
#include <map>
|
||||
|
||||
template <class T>
|
||||
struct DereferencingComparator { bool operator()(const T a, const T b) const { return *a < *b; } };
|
||||
|
||||
|
@ -6,9 +6,11 @@
|
||||
#define BITCOIN_MEMUSAGE_H
|
||||
|
||||
#include <indirectmap.h>
|
||||
#include <prevector.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <cassert>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <set>
|
||||
|
Loading…
x
Reference in New Issue
Block a user