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

algorithm, operation 全面修正

This commit is contained in:
bolero-MURAKAMI 2011-09-03 22:26:26 +09:00
parent 21f5d5191a
commit 5e67195030
244 changed files with 4764 additions and 831 deletions

View file

@ -16,7 +16,7 @@ namespace sprout {
//
template<typename Container, typename T, typename... Values>
struct push_back
: public insert<Container, T, Values...>
: public sprout::fixed::result_of::insert<Container, T, Values...>
{};
} // namespace result_of
@ -39,6 +39,12 @@ namespace sprout {
);
}
} // namespace fixed
namespace result_of {
using sprout::fixed::result_of::push_back;
} // namespace result_of
using sprout::fixed::push_back;
} // namespace sprout
#endif // #ifndef SPROUT_OPERATION_FIXED_PUSH_BACK_HPP