forked from boostorg/fusion
merge from trunk
[SVN r42225]
This commit is contained in:
@ -25,6 +25,24 @@ namespace boost { namespace fusion { namespace traits
|
||||
typedef T type;
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct deduce<T const>
|
||||
{
|
||||
typedef T type;
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct deduce<T volatile>
|
||||
{
|
||||
typedef T type;
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct deduce<T const volatile>
|
||||
{
|
||||
typedef T type;
|
||||
};
|
||||
|
||||
// Keep references on mutable LValues
|
||||
|
||||
template <typename T>
|
||||
|
Reference in New Issue
Block a user