add SPROUT_DEPRECATED

This commit is contained in:
bolero-MURAKAMI 2014-02-21 00:25:55 +09:00
parent 06bd554967
commit 2867cd79ef
20 changed files with 43 additions and 1 deletions

View file

@ -16,8 +16,10 @@
namespace sprout {
//
// to_string_array
// [[deprecated]]
//
template<typename T, typename... Types>
SPROUT_DEPRECATED
inline SPROUT_CONSTEXPR sprout::array<T, sizeof...(Types)>
to_string_array(Types&&... args) {
return sprout::convert_array<T>(sprout::to_string_value(), sprout::forward<Types>(args)...);