From 6c49d39259065e22845624edef66ea52add6b309 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sun, 24 Apr 2016 15:56:57 +0200 Subject: [PATCH] Fix warning without threads --- include/deal.II/lac/vector.templates.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/deal.II/lac/vector.templates.h b/include/deal.II/lac/vector.templates.h index d23c303352..053dda0c78 100644 --- a/include/deal.II/lac/vector.templates.h +++ b/include/deal.II/lac/vector.templates.h @@ -198,6 +198,7 @@ namespace internal functor(0,vec_size); #else functor(0,vec_size); + (void)partitioner; #endif } @@ -1083,6 +1084,7 @@ namespace internal accumulate_recursive(op,0,vec_size,result); #else accumulate_recursive(op,0,vec_size,result); + (void)partitioner; #endif } } -- 2.39.5