Skip to content

Commit d0bb70e

Browse files
committed
Missed header
1 parent 96c757e commit d0bb70e

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

stan/math/prim/prob/binomial_logit_glm_lpmf.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <stan/math/prim/fun/value_of.hpp>
1414
#include <stan/math/prim/fun/as_value_column_array_or_scalar.hpp>
1515
#include <stan/math/prim/fun/as_value_column_vector_or_scalar.hpp>
16+
#include <stan/math/prim/functor/partials_propagator.hpp>
1617

1718
namespace stan {
1819
namespace math {
@@ -58,9 +59,6 @@ return_type_t<T_x, T_alpha, T_beta> binomial_logit_glm_lpmf(
5859
constexpr int T_x_rows = T_x::RowsAtCompileTime;
5960
using T_xbeta_partials = partials_return_t<T_x, T_beta>;
6061
using T_partials_return = partials_return_t<T_x, T_alpha, T_beta>;
61-
using T_theta_tmp =
62-
typename std::conditional_t<T_x_rows == 1, T_partials_return,
63-
Eigen::Array<T_partials_return, -1, 1>>;
6462
using T_xbeta_tmp =
6563
typename std::conditional_t<T_x_rows == 1, T_xbeta_partials,
6664
Eigen::Array<T_xbeta_partials, -1, 1>>;

0 commit comments

Comments
 (0)