mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-12 20:16:30 +02:00
result_of and polymorphic function obj compatibility
[SVN r37962]
This commit is contained in:
@ -22,8 +22,11 @@ template <class Base = boost::blank>
|
||||
struct test_func
|
||||
: Base
|
||||
{
|
||||
template <typename T0, typename T1>
|
||||
struct result
|
||||
template<typename T>
|
||||
struct result;
|
||||
|
||||
template<typename B, typename T0, typename T1>
|
||||
struct result<test_func<B>(T0, T1)>
|
||||
{
|
||||
typedef int type;
|
||||
};
|
||||
|
Reference in New Issue
Block a user