File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -59,13 +59,17 @@ struct temporary : public temporary_terminal_expression
59
59
// / Create temporary to be reused in a vector expression.
60
60
/* * The type of the temporary is explicitly specified. */
61
61
template <size_t Tag, typename T, class Expr >
62
+ #ifndef DOXYGEN
62
63
typename std::enable_if<
63
64
boost::proto::matches<
64
65
typename boost::proto::result_of::as_expr< Expr >::type,
65
66
vector_expr_grammar
66
67
>::value,
68
+ #endif
67
69
temporary<T, Tag, Expr>
70
+ #ifndef DOXYGEN
68
71
>::type
72
+ #endif
69
73
make_temp (const Expr &expr) {
70
74
return temporary<T, Tag, Expr>(expr);
71
75
}
@@ -74,13 +78,17 @@ make_temp(const Expr &expr) {
74
78
/* * The type of the temporary is automatically deduced from the supplied
75
79
* expression. */
76
80
template <size_t Tag, class Expr >
81
+ #ifndef DOXYGEN
77
82
typename std::enable_if<
78
83
boost::proto::matches<
79
84
typename boost::proto::result_of::as_expr< Expr >::type,
80
85
vector_expr_grammar
81
86
>::value,
87
+ #endif
82
88
temporary<typename detail::return_type<Expr>::type, Tag, Expr>
89
+ #ifndef DOXYGEN
83
90
>::type
91
+ #endif
84
92
make_temp (const Expr &expr) {
85
93
return temporary<typename detail::return_type<Expr>::type, Tag, Expr>(expr);
86
94
}
You can’t perform that action at this time.
0 commit comments