From 4d2e63c686e08e86977582bb6f1c8a37adf31caa Mon Sep 17 00:00:00 2001 From: conrad Date: Mon, 18 Aug 2025 10:39:14 +1000 Subject: [PATCH] fix --- include/armadillo_bits/glue_conv_meat.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/armadillo_bits/glue_conv_meat.hpp b/include/armadillo_bits/glue_conv_meat.hpp index 56427e61..a8ff82ba 100644 --- a/include/armadillo_bits/glue_conv_meat.hpp +++ b/include/armadillo_bits/glue_conv_meat.hpp @@ -234,7 +234,7 @@ glue_conv::apply(Mat& out, const Glue& { Mat tmp; - glue_conv2::apply(tmp, A, B, A_is_col); + glue_conv::apply(tmp, A, B, A_is_col); const SizeMat out_size = arma::size(A) - arma::size(B) + 1;