mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-10 22:18:54 +01:00
Add missing includes
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user