mirror of
https://github.com/triqs/dft_tools
synced 2024-10-31 19:23:45 +01:00
clef : forgot a forward in unary operator eval
This commit is contained in:
parent
0f324df3ef
commit
2eca9d8659
@ -179,7 +179,7 @@ namespace triqs { namespace clef {
|
|||||||
#define TRIQS_CLEF_OPERATION(TAG,OP)\
|
#define TRIQS_CLEF_OPERATION(TAG,OP)\
|
||||||
namespace tags { struct TAG : unary_op { static const char * name() { return BOOST_PP_STRINGIZE(OP);} };}\
|
namespace tags { struct TAG : unary_op { static const char * name() { return BOOST_PP_STRINGIZE(OP);} };}\
|
||||||
template<> struct operation<tags::TAG> {\
|
template<> struct operation<tags::TAG> {\
|
||||||
template<typename L> auto operator()(L const & l) const DECL_AND_RETURN (OP _cl(l));\
|
template<typename L> auto operator()(L && l) const DECL_AND_RETURN (OP _cl(std::forward<L>(l)));\
|
||||||
};\
|
};\
|
||||||
template<typename L>\
|
template<typename L>\
|
||||||
typename std::enable_if<is_any_lazy<L>::value, expr<tags::TAG,typename expr_storage_t<L>::type> >::type \
|
typename std::enable_if<is_any_lazy<L>::value, expr<tags::TAG,typename expr_storage_t<L>::type> >::type \
|
||||||
|
Loading…
Reference in New Issue
Block a user