1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add tuple construction (from pair)

This commit is contained in:
bolero-MURAKAMI 2013-03-27 17:55:14 +09:00
parent 2e8b85e90c
commit f905d1f02a
9 changed files with 685 additions and 447 deletions

View file

@ -0,0 +1,14 @@
#ifndef SPROUT_UTILITY_PAIR_PAIR_FWD_HPP
#define SPROUT_UTILITY_PAIR_PAIR_FWD_HPP
#include <sprout/config.hpp>
namespace sprout {
//
// pair
//
template <typename T1, typename T2>
struct pair;
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_PAIR_PAIR_FWD_HPP