From: Martin Kronbichler Date: Sun, 24 Apr 2016 13:56:57 +0000 (+0200) Subject: Fix warning without threads X-Git-Tag: v8.5.0-rc1~1080^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2549%2Fhead;p=dealii.git Fix warning without threads --- 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 } }