fix support for STL container: some algorithms

This commit is contained in:
bolero-MURAKAMI 2013-01-17 03:53:17 +09:00
parent ace6acad69
commit a9cd556f8e
28 changed files with 911 additions and 106 deletions

View file

@ -10,7 +10,6 @@
#include <sprout/container/functions.hpp>
namespace sprout {
//
// container_construct_traits
//
@ -63,7 +62,7 @@ namespace sprout {
return remake_impl(
sprout::forward<Cont>(cont),
size,
sprout::make<internal_type>(sprout::forward<Args>(args)...)
sprout::remake<internal_type>(cont, size, sprout::forward<Args>(args)...)
);
}
};