#ifndef MAKE_PAIR_HPP # define MAKE_PAIR_HPP # define PR_TPL template < class T1, class T2 > # define PR pair #include "pair.hpp" namespace ft { PR_TPL PR make_pair(T1 x, T2 y) { return PR(x, y) ; } } // namespace ft # undef PR # undef PR_TPL #endif