1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

fix README

This commit is contained in:
bolero-MURAKAMI 2013-03-24 17:07:20 +09:00
parent f5b8b91255
commit f712788cce
26 changed files with 192 additions and 72 deletions

View file

@ -3,7 +3,7 @@
#include <sprout/config.hpp>
#include <sprout/utility/forward.hpp>
#include <sprout/weed/detail/uncvref.hpp>
#include <sprout/type_traits/remove_shallow_cvref.hpp>
namespace sprout {
namespace weed {
@ -17,9 +17,9 @@ namespace sprout {
public:
template<typename T>
SPROUT_CONSTEXPR typename eval<
typename sprout::weed::detail::uncvref<T>::type
typename sprout::remove_shallow_cvref<T>::type
>::result_type operator()(T&& t) const {
typedef eval<typename sprout::weed::detail::uncvref<T>::type> eval_type;
typedef eval<typename sprout::remove_shallow_cvref<T>::type> eval_type;
return eval_type()(sprout::forward<T>(t));
}
};