From d8f31aa94fc55cbafc278ea12e17daabc01bf864 Mon Sep 17 00:00:00 2001 From: conrad Date: Sat, 12 Jul 2025 19:38:34 +1000 Subject: [PATCH] prevent shadow warnings --- include/armadillo_bits/op_norm2est_bones.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/armadillo_bits/op_norm2est_bones.hpp b/include/armadillo_bits/op_norm2est_bones.hpp index 2c633772..5570be9e 100644 --- a/include/armadillo_bits/op_norm2est_bones.hpp +++ b/include/armadillo_bits/op_norm2est_bones.hpp @@ -24,10 +24,10 @@ template struct norm2est_randu_filler { - typedef typename promote_type::result eTp; + typedef typename promote_type::result eT_promoted; - std::mt19937_64 local_engine; - std::uniform_real_distribution local_u_distr; + std::mt19937_64 local_engine; + std::uniform_real_distribution local_u_distr; inline norm2est_randu_filler(); @@ -38,10 +38,10 @@ struct norm2est_randu_filler template struct norm2est_randu_filler< std::complex > { - typedef typename promote_type::result Tp; + typedef typename promote_type::result T_promoted; - std::mt19937_64 local_engine; - std::uniform_real_distribution local_u_distr; + std::mt19937_64 local_engine; + std::uniform_real_distribution local_u_distr; inline norm2est_randu_filler();