aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2017-07-06 21:11:15 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2017-07-06 21:11:15 -0700
commitdc524ac7166a603de0dac9e0cfd5aa055dd117ef (patch)
tree99045387c6a6bef229c938edee560656943f4440 /unsupported
parentc010b173608550d515f0aafd95cf8488af546e1a (diff)
Fixed compilation warning
Diffstat (limited to 'unsupported')
-rw-r--r--unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h b/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
index 9dcc9dab7..1264a0270 100644
--- a/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
+++ b/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
@@ -24,9 +24,9 @@ class NonBlockingThreadPoolTempl : public Eigen::ThreadPoolInterface {
NonBlockingThreadPoolTempl(int num_threads, bool allow_spinning,
Environment env = Environment())
- : num_threads_(num_threads),
+ : env_(env),
+ num_threads_(num_threads),
allow_spinning_(allow_spinning),
- env_(env),
threads_(num_threads),
queues_(num_threads),
coprimes_(num_threads),