mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-07 18:27:40 +08:00
Silence compiler warnings in ThreadPoolInterface.h.
This commit is contained in:
parent
82772e8d9d
commit
febd09dcc0
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user