mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix support for STL container: some algorithms
This commit is contained in:
parent
ace6acad69
commit
a9cd556f8e
28 changed files with 911 additions and 106 deletions
|
@ -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)...)
|
||||
);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue