Skip to content

Commit

Permalink
Cpplint fix (Issue #2814)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbales2 committed Oct 29, 2020
1 parent fa17886 commit fa20a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stan/mcmc/auto_adaptation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace mcmc {
template <typename Model>
struct log_prob_wrapper_covar {
const Model& model_;
log_prob_wrapper_covar(const Model& model) : model_(model) {}
explicit log_prob_wrapper_covar(const Model& model) : model_(model) {}

template <typename T>
T operator()(const Eigen::Matrix<T, Eigen::Dynamic, 1>& q) const {
Expand Down

0 comments on commit fa20a9f

Please sign in to comment.