Add missing includes

This commit is contained in:
practicalswift
2020-01-23 17:25:45 +00:00
parent 3e1bf71064
commit c2bd588860
2 changed files with 4 additions and 0 deletions

View File

@@ -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; } };