Files
integration/luprex/cpp/wrap/wrap-map.hpp
2023-02-14 14:05:45 -05:00

15 lines
359 B
C++

#ifndef WRAP_MAP_HPP
#define WRAP_MAP_HPP
#include "eng-malloc.hpp"
#include <map>
namespace eng {
template<class K, class V, class C=std::less<K>>
class map : public std::map<K, V, C, eng::allocator<std::pair<const K, V>>>, eng::opnew {
using std::map<K, V, C, eng::allocator<std::pair<const K, V>>>::map;
};
} // namespace eng
#endif // WRAP_MAP_HPP