aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar David Tellenbach <david.tellenbach@me.com>2020-06-15 00:14:58 +0200
committerGravatar David Tellenbach <david.tellenbach@me.com>2020-06-15 00:14:58 +0200
commitc6c84ed9611cafd0acf89e467b050d9e94bec686 (patch)
tree3414825a23b9d5605c8438a53fb4acf9d14423b7 /Eigen/src/Core/products
parent6228f27234ca84545e711fb27b7850f6829af3d9 (diff)
Fix unused variable warning on Arm
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/GeneralBlockPanelKernel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/products/GeneralBlockPanelKernel.h b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
index a24b452cd..e971b3339 100644
--- a/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+++ b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
@@ -1101,7 +1101,7 @@ struct gebp_traits <float, float, false, false,Architecture::NEON,GEBPPacketFull
dest = *b;
}
- EIGEN_STRONG_INLINE void updateRhs(const RhsScalar* b, RhsPacketx4& dest) const
+ EIGEN_STRONG_INLINE void updateRhs(const RhsScalar*, RhsPacketx4&) const
{}
EIGEN_STRONG_INLINE void loadRhsQuad(const RhsScalar* b, RhsPacket& dest) const
@@ -1170,7 +1170,7 @@ struct gebp_traits <double, double, false, false,Architecture::NEON>
loadRhs(b,dest);
}
- EIGEN_STRONG_INLINE void updateRhs(const RhsScalar* b, RhsPacketx4& dest) const
+ EIGEN_STRONG_INLINE void updateRhs(const RhsScalar*, RhsPacketx4&) const
{}
EIGEN_STRONG_INLINE void loadRhsQuad(const RhsScalar* b, RhsPacket& dest) const