mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-19 21:32:23 +00:00
### Description <!-- Describe your changes. --> This patches Eigen source to remove an unused deprecated static var. ### Motivation and Context Internal customer request.
13 lines
806 B
Diff
13 lines
806 B
Diff
diff --git a/Eigen/src/Core/util/IndexedViewHelper.h b/Eigen/src/Core/util/IndexedViewHelper.h
|
|
index f85de305f..3dc2bb5e7 100644
|
|
--- a/Eigen/src/Core/util/IndexedViewHelper.h
|
|
+++ b/Eigen/src/Core/util/IndexedViewHelper.h
|
|
@@ -178,7 +178,7 @@ namespace placeholders {
|
|
|
|
EIGEN_DEPRECATED static const all_t all = Eigen::all; // PLEASE use Eigen::all instead of Eigen::placeholders::all
|
|
EIGEN_DEPRECATED static const last_t last = Eigen::last; // PLEASE use Eigen::last instead of Eigen::placeholders::last
|
|
- EIGEN_DEPRECATED static const end_t end = Eigen::lastp1; // PLEASE use Eigen::lastp1 instead of Eigen::placeholders::end
|
|
+ // EIGEN_DEPRECATED static const end_t end = Eigen::lastp1; // PLEASE use Eigen::lastp1 instead of Eigen::placeholders::end
|
|
}
|
|
|
|
} // end namespace Eigen
|