2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

removed tabs from reverse_mode_autodiff_stl_overloads.hpp

This commit is contained in:
mzhelyez
2025-08-17 14:42:48 +02:00
parent 62b47b5e31
commit 4a433c40ba

View File

@@ -155,10 +155,11 @@ struct exp_expr : public abstract_unary_expression<T, order, ARG, exp_expr<T, or
}
static const inner_t derivative(const inner_t &argv, const inner_t &v, const T &constant)
{
using std::exp;
using std::exp;
return exp(argv);
}
};
template<typename T, size_t order, typename LHS, typename RHS>
struct pow_expr
: public abstract_binary_expression<T, order, LHS, RHS, pow_expr<T, order, LHS, RHS>>