Skip to content

Commit b5f0894

Browse files
committed
fix templating?
1 parent a37ad9a commit b5f0894

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/R_interface.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ list r_proj_local(const doubles_matrix<>& eta, const doubles_matrix<>& e_cov,
9696
vec _x(c);
9797
vec _lx(c);
9898
mat _l_out(c, c);
99-
writable::doubles_matrix eta_proj(n, c);
100-
writable::doubles_matrix var_proj(n, c);
99+
writable::doubles_matrix<> eta_proj(n, c);
100+
writable::doubles_matrix<> var_proj(n, c);
101101

102102
for (int i = 0; i < n; i++) {
103103
for (int j = 0; j < c; j++) {

0 commit comments

Comments
 (0)