aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-07-17 16:50:47 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-07-17 16:50:47 -0700
commit6799c26cd6d5aba6223de287e7ea7e024c9b8eb1 (patch)
treeed0ac27673fc238065440b1f5a80d84f62d823b5 /unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
parent7a39439904751f0269a4fe39805785a5353238b5 (diff)
Fixed a typo in a test and a compilation warning
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h b/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
index 2b5de4f55..52f3ad76e 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
@@ -403,7 +403,7 @@ template <std::size_t n, std::size_t V1, std::size_t V2, std::size_t V3, std::si
template <typename Dims1, typename Dims2, size_t n, size_t m>
struct sizes_match_up_to_dim {
- static inline bool run(Dims1& dims1, Dims2& dims2) {
+ static inline bool run(Dims1&, Dims2&) {
return false;
}
};