Files
integration/luprex/core/wrap/wrap-utility.hpp

18 lines
311 B
C++

#ifndef WRAP_UTILITY_HPP
#define WRAP_UTILITY_HPP
#include "two-mallocs.hpp"
#include <utility>
namespace eng {
template<class A, class B>
using pair = std::pair<A, B>;
} // namespace eng
namespace drv {
template<class A, class B>
using pair = std::pair<A, B>;
} // namespace drv
#endif // WRAP_UTILITY_HPP