mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix tuple construction, darkroom rgb & vector3d construction
This commit is contained in:
parent
c78e1d0e6d
commit
2e8b85e90c
53 changed files with 262 additions and 196 deletions
|
@ -18,7 +18,8 @@ namespace sprout {
|
|||
template<typename T>
|
||||
SPROUT_CONSTEXPR typename eval<
|
||||
typename sprout::remove_shallow_cvref<T>::type
|
||||
>::result_type operator()(T&& t) const {
|
||||
>::result_type
|
||||
operator()(T&& t) const {
|
||||
typedef eval<typename sprout::remove_shallow_cvref<T>::type> eval_type;
|
||||
return eval_type()(sprout::forward<T>(t));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue