From d2d84a4ecfa492dc2631c2dfe41185af8960fcf1 Mon Sep 17 00:00:00 2001 From: conrad Date: Sat, 14 Jan 2023 02:37:41 +1000 Subject: [PATCH] fix --- include/armadillo_bits/fn_shift.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/armadillo_bits/fn_shift.hpp b/include/armadillo_bits/fn_shift.hpp index e246562a..55410c7c 100644 --- a/include/armadillo_bits/fn_shift.hpp +++ b/include/armadillo_bits/fn_shift.hpp @@ -99,7 +99,7 @@ shift typedef typename T1::elem_type eT; - arma_debug_check( (dim > 1), "vectorise(): parameter 'dim' must be 0 or 1" ); + arma_debug_check( (dim > 1), "shift(): parameter 'dim' must be 0 or 1" ); const uword len = (N < 0) ? uword(-N) : uword(N); const uword neg = (N < 0) ? uword( 1) : uword(0);