Wrap all STL includes to support drv:: and eng::
This commit is contained in:
17
luprex/core/wrap/wrap-utility.hpp
Normal file
17
luprex/core/wrap/wrap-utility.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user