13 lines
264 B
C++
13 lines
264 B
C++
#ifndef WRAP_MAP_HPP
|
|
#define WRAP_MAP_HPP
|
|
|
|
#include "two-mallocs.hpp"
|
|
#include <map>
|
|
|
|
namespace eng {
|
|
template<class K, class V, class C=std::less<K>>
|
|
using map = std::map<K, V, C, eng::allocator<std::pair<const K, V>>>;
|
|
} // namespace eng
|
|
|
|
#endif // WRAP_MAP_HPP
|