mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
231910c863
sprout/type/string.hpp 追加
18 lines
434 B
C++
18 lines
434 B
C++
#ifndef SPROUT_BREED_DETAIL_STD_RESULT_OF_HPP
|
|
#define SPROUT_BREED_DETAIL_STD_RESULT_OF_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
|
|
namespace sprout {
|
|
namespace breed {
|
|
namespace detail {
|
|
template<typename F>
|
|
struct std_result_of
|
|
: public std::result_of<F>
|
|
{};
|
|
} // namespace detail
|
|
} // namespace breed
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_BREED_DETAIL_STD_RESULT_OF_HPP
|