/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_STRING_STRETCH_HPP #define SPROUT_STRING_STRETCH_HPP #include #include #include namespace sprout { // // stretch // template inline SPROUT_CONSTEXPR sprout::basic_string stretch(sprout::basic_string const& s) { return s; } template inline SPROUT_CONSTEXPR sprout::basic_string stretch(T const(& arr)[N]) { return sprout::stretch(sprout::to_string(arr)); } } // namespace sprout #endif // #ifndef SPROUT_STRING_STRETCH_HPP