sprout/darkroom/materials/plaid.hpp 追加

sprout/string.hpp make_string 追加, operator basic_string 追加
This commit is contained in:
bolero-MURAKAMI 2011-12-14 20:14:13 +09:00
parent 3aee992fc9
commit c0309c22ed
6 changed files with 235 additions and 47 deletions

View file

@ -248,7 +248,7 @@ namespace sprout {
//
template<typename T, typename... Types>
SPROUT_CONSTEXPR inline sprout::array<T, sizeof...(Types)> make_array(Types&&... args) {
return sprout::array<typename std::decay<T>::type, sizeof...(Types)>{{sprout::forward<Types>(args)...}};
return sprout::array<T, sizeof...(Types)>{{sprout::forward<Types>(args)...}};
}
//