mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Silence compiler warnings in ThreadPoolInterface.h.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user