X
Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
std::make_pair is an STL function to create a std::pair.
#include <utility> int main() { std::pair<int,int> p; p = std::make_pair(3,9); }