mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix README
This commit is contained in:
parent
f5b8b91255
commit
f712788cce
26 changed files with 192 additions and 72 deletions
|
@ -5,9 +5,9 @@
|
|||
#include <sprout/config.hpp>
|
||||
#include <sprout/string.hpp>
|
||||
#include <sprout/utility/forward.hpp>
|
||||
#include <sprout/type_traits/remove_shallow_cvref.hpp>
|
||||
#include <sprout/weed/traits/type/is_c_str.hpp>
|
||||
#include <sprout/weed/traits/expr/terminal_of.hpp>
|
||||
#include <sprout/weed/detail/uncvref.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace weed {
|
||||
|
@ -17,7 +17,7 @@ namespace sprout {
|
|||
template<typename Arg>
|
||||
inline SPROUT_CONSTEXPR typename std::enable_if<
|
||||
!sprout::weed::traits::is_c_str<
|
||||
typename sprout::weed::detail::uncvref<Arg>::type
|
||||
typename sprout::remove_shallow_cvref<Arg>::type
|
||||
>::value,
|
||||
typename sprout::weed::traits::terminal_of<Arg>::type
|
||||
>::type make_terminal(Arg&& arg) {
|
||||
|
@ -28,7 +28,7 @@ namespace sprout {
|
|||
template<typename Arg>
|
||||
inline SPROUT_CONSTEXPR typename std::enable_if<
|
||||
sprout::weed::traits::is_c_str<
|
||||
typename sprout::weed::detail::uncvref<Arg>::type
|
||||
typename sprout::remove_shallow_cvref<Arg>::type
|
||||
>::value,
|
||||
typename sprout::weed::traits::terminal_of<Arg>::type
|
||||
>::type make_terminal(Arg&& arg) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue