remove unused variable

This commit is contained in:
conrad
2023-01-14 02:25:12 +11:00
parent c6f31093ad
commit 0d2c385715
2 changed files with 0 additions and 19 deletions
-6
View File
@@ -20,8 +20,6 @@
//! @{
//! Analog of the Op class, intended for cubes
template<typename T1, typename op_type>
class OpCube : public BaseCube< typename T1::elem_type, OpCube<T1, op_type> >
{
@@ -30,13 +28,11 @@ class OpCube : public BaseCube< typename T1::elem_type, OpCube<T1, op_type> >
typedef typename T1::elem_type elem_type;
typedef typename get_pod_type<elem_type>::result pod_type;
inline explicit OpCube(const BaseCube<typename T1::elem_type, T1>& in_m);
inline OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const elem_type in_aux);
inline OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const elem_type in_aux, const uword in_aux_uword_a, const uword in_aux_uword_b, const uword in_aux_uword_c);
inline OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b);
inline OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b, const uword in_aux_uword_c);
inline OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b, const uword in_aux_uword_c, const uword in_aux_uword_d, const char junk);
inline ~OpCube();
arma_aligned const T1& m; //!< the operand; must be derived from BaseCube
@@ -44,8 +40,6 @@ class OpCube : public BaseCube< typename T1::elem_type, OpCube<T1, op_type> >
arma_aligned uword aux_uword_a; //!< auxiliary data, uword format
arma_aligned uword aux_uword_b; //!< auxiliary data, uword format
arma_aligned uword aux_uword_c; //!< auxiliary data, uword format
arma_aligned uword aux_uword_d; //!< auxiliary data, uword format
};
-13
View File
@@ -76,19 +76,6 @@ OpCube<T1, op_type>::OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, co
template<typename T1, typename op_type>
OpCube<T1, op_type>::OpCube(const BaseCube<typename T1::elem_type, T1>& in_m, const uword in_aux_uword_a, const uword in_aux_uword_b, const uword in_aux_uword_c, const uword in_aux_uword_d, const char)
: m(in_m.get_ref())
, aux_uword_a(in_aux_uword_a)
, aux_uword_b(in_aux_uword_b)
, aux_uword_c(in_aux_uword_c)
, aux_uword_d(in_aux_uword_d)
{
arma_extra_debug_sigprint();
}
template<typename T1, typename op_type>
OpCube<T1, op_type>::~OpCube()
{