
URL: https://svn.lrde.epita.fr/svn/oln/trunk ChangeLog: 2009-03-09 Frederic Bour <bour@lrde.epita.fr> Add missing trait for thru_morpher. * milena/sandbox/fred/fun/unary.hh: Add is_assignable trait, just a workaround. --- unary.hh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) Index: trunk/milena/sandbox/fred/fun/unary.hh =================================================================== --- trunk/milena/sandbox/fred/fun/unary.hh (revision 3501) +++ trunk/milena/sandbox/fred/fun/unary.hh (revision 3502) @@ -77,6 +77,23 @@ }; } + namespace trait + { + + namespace fun + { + + /// Find correct implementation + template <typename F> + struct is_assignable + { + typedef metal::true_ ret; + }; + + } + + } + namespace meta { template <template <class> class F>