Files
integration/luprex/cpp/wrap/wrap-map.hpp

15 lines
359 B
C++
Raw Normal View History

#ifndef WRAP_MAP_HPP
#define WRAP_MAP_HPP
2022-02-28 21:57:54 -05:00
#include "eng-malloc.hpp"
#include <map>
namespace eng {
template<class K, class V, class C=std::less<K>>
2022-03-02 14:52:51 -05:00
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