aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/ThreadPool
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-09-19 11:11:04 -0700
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-09-19 11:11:04 -0700
commitfebd09dcc02c1429cd4abd3ddb3ed5108fcd8339 (patch)
tree03e17ddb7887555b174877bad96f75e7f52dd02e /unsupported/Eigen/CXX11/src/ThreadPool
parent82772e8d9de3e04d84bcd3aafaf714e88404f784 (diff)
Silence compiler warnings in ThreadPoolInterface.h.
Diffstat (limited to 'unsupported/Eigen/CXX11/src/ThreadPool')
-rw-r--r--unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h b/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
index d1fa4b23e..25030dc0b 100644
--- a/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
+++ b/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
@@ -21,8 +21,8 @@ class ThreadPoolInterface {
// Submits a closure to be run by threads in the range [start, end) in the
// pool.
- virtual void ScheduleWithHint(std::function<void()> fn, int start,
- int end) {
+ virtual void ScheduleWithHint(std::function<void()> fn, int /*start*/,
+ int /*end*/) {
// Just defer to Schedule in case sub-classes aren't interested in
// overriding this functionality.
Schedule(fn);