Skip to content

Commit 37113c3

Browse files
committed
Documentation changes
1 parent 5d0e8e0 commit 37113c3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

vexcl/temporary.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,17 @@ struct temporary : public temporary_terminal_expression
5959
/// Create temporary to be reused in a vector expression.
6060
/** The type of the temporary is explicitly specified. */
6161
template <size_t Tag, typename T, class Expr>
62+
#ifndef DOXYGEN
6263
typename std::enable_if<
6364
boost::proto::matches<
6465
typename boost::proto::result_of::as_expr< Expr >::type,
6566
vector_expr_grammar
6667
>::value,
68+
#endif
6769
temporary<T, Tag, Expr>
70+
#ifndef DOXYGEN
6871
>::type
72+
#endif
6973
make_temp(const Expr &expr) {
7074
return temporary<T, Tag, Expr>(expr);
7175
}
@@ -74,13 +78,17 @@ make_temp(const Expr &expr) {
7478
/** The type of the temporary is automatically deduced from the supplied
7579
* expression. */
7680
template <size_t Tag, class Expr>
81+
#ifndef DOXYGEN
7782
typename std::enable_if<
7883
boost::proto::matches<
7984
typename boost::proto::result_of::as_expr< Expr >::type,
8085
vector_expr_grammar
8186
>::value,
87+
#endif
8288
temporary<typename detail::return_type<Expr>::type, Tag, Expr>
89+
#ifndef DOXYGEN
8390
>::type
91+
#endif
8492
make_temp(const Expr &expr) {
8593
return temporary<typename detail::return_type<Expr>::type, Tag, Expr>(expr);
8694
}

0 commit comments

Comments
 (0)