mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-12 14:54:10 +00:00
fix curve implementation
This commit is contained in:
parent
b55e74de78
commit
1c758320b6
5 changed files with 36 additions and 8 deletions
|
@ -50,7 +50,7 @@ namespace sprout {
|
|||
SPROUT_CONSTEXPR typename sprout::tuples::tuple_construct_traits<Tuple>::copied_type
|
||||
default_make_tuple(Args&&... args) {
|
||||
typedef typename sprout::tuples::tuple_construct_traits<Tuple>::copied_type copied_type;
|
||||
return copied_type(SPROUT_FORWARD(Args, args)...);
|
||||
return copied_type{SPROUT_FORWARD(Args, args)...};
|
||||
}
|
||||
} // namespace detail
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue